addDialog()

in src/app/chat/chat.component.ts [62:68]


  addDialog(text: string, url?: string, isQuestion: boolean = true) {
    this.loading = false;
    this.conversation.push({
      text: text,
      type: isQuestion ? 'question' : 'answer',
    });
  }