(text: string)
| 4069 | }); |
| 4070 | // Anthropic-native (flat type) frame builders |
| 4071 | const nText = (text: string) => |
| 4072 | encodeEventStreamMessage("chunk", { |
| 4073 | type: "content_block_delta", |
| 4074 | index: 0, |
| 4075 | delta: { type: "text_delta", text }, |
| 4076 | }); |
| 4077 | const nToolStart = (index: number, id: string, name: string) => |
| 4078 | encodeEventStreamMessage("chunk", { |
| 4079 | type: "content_block_start", |
no test coverage detected
searching dependent graphs…