()
| 563 | } |
| 564 | |
| 565 | private getDevtoolsSnapshot(): AIDevtoolsChatSnapshot { |
| 566 | return { |
| 567 | messages: this.processor.getMessages(), |
| 568 | status: this.status, |
| 569 | isLoading: this.isLoading, |
| 570 | isSubscribed: this.isSubscribed, |
| 571 | connectionStatus: this.connectionStatus, |
| 572 | sessionGenerating: this.sessionGenerating, |
| 573 | activeRunIds: Array.from(this.activeRunIds), |
| 574 | ...(this.error ? { error: this.error.message } : {}), |
| 575 | } |
| 576 | } |
| 577 | |
| 578 | private findMessageIdForToolCall(toolCallId: string): string | undefined { |
| 579 | const messages = this.processor.getMessages() |
no test coverage detected