| 11 | * Provides fragment emission for live progress streaming. |
| 12 | */ |
| 13 | export interface StreamingExecutionContext { |
| 14 | attach?(image: ToolAttachment): void; |
| 15 | emitFragment(fragment: AnyFragment): void; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Executor for non-streaming tools. Unary: accepts args, returns a result. |
no outgoing calls
no test coverage detected