Get all stream chunks concatenated (strings only)
()
| 77 | |
| 78 | /** Get all stream chunks concatenated (strings only) */ |
| 79 | getFullStreamText(): string { |
| 80 | return this.streamChunks |
| 81 | .filter((c): c is string => typeof c === 'string') |
| 82 | .join('') |
| 83 | } |
| 84 | |
| 85 | /** Get subagent chunks for a specific agent */ |
| 86 | getSubagentChunks(agentId: string): string[] { |
no outgoing calls
no test coverage detected