(opts: Partial<ToolInvokeResult> = {})
| 88 | } |
| 89 | |
| 90 | function streamedToolResult(opts: Partial<ToolInvokeResult> = {}): ToolInvokeResult { |
| 91 | return { |
| 92 | structuredOutput: structuredTextOutput('daemon-result'), |
| 93 | ...opts, |
| 94 | }; |
| 95 | } |
| 96 | |
| 97 | function makeTool(opts: { |
| 98 | cliName: string; |
no test coverage detected