(history: ChatHistoryItem[])
| 114 | } |
| 115 | |
| 116 | updateHistory(history: ChatHistoryItem[]): void { |
| 117 | const session = this.getCurrentSession(); |
| 118 | session.history = history; |
| 119 | saveSession(); |
| 120 | } |
| 121 | |
| 122 | updateTitle(title: string): void { |
| 123 | const session = this.getCurrentSession(); |
no test coverage detected