MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / getFullStreamText

Method getFullStreamText

sdk/e2e/utils/event-collector.ts:79–83  ·  view source on GitHub ↗

Get all stream chunks concatenated (strings only)

()

Source from the content-addressed store, hash-verified

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[] {

Calls

no outgoing calls

Tested by

no test coverage detected