(text: string)
| 4050 | describe("collapseBedrockEventStream blocks + zero-arg", () => { |
| 4051 | // Converse (camelCase) frame builders |
| 4052 | const cText = (text: string) => |
| 4053 | encodeEventStreamMessage("contentBlockDelta", { |
| 4054 | contentBlockIndex: 0, |
| 4055 | contentBlockDelta: { contentBlockIndex: 0, delta: { text } }, |
| 4056 | }); |
| 4057 | const cToolStart = (index: number, id: string, name: string) => |
| 4058 | encodeEventStreamMessage("contentBlockStart", { |
| 4059 | contentBlockIndex: index, |
no test coverage detected
searching dependent graphs…