in src/app/ui/main/chat/chat.component.ts [149:159]
async clearConversation() {
if (this.selectedModelId) {
try {
this._error = null
await this._nlp.clearConversation(this.selectedModelId).toPromise()
} catch (e) {
this._error = e
}
}
}