(aiChatId: string)
| 952 | } |
| 953 | |
| 954 | getLatestSummary(aiChatId: string): AIMessage | null { |
| 955 | const row = [...this.getActivePathRows(aiChatId)].reverse().find((message) => message.role === 'summary') |
| 956 | return row ? this.parseMessageRow(row) : null |
| 957 | } |
| 958 | |
| 959 | getMessagesAfterSummary( |
| 960 | aiChatId: string, |
no test coverage detected