(message: string)
| 451 | } |
| 452 | |
| 453 | const markToolCallCancelled = (message: string) => { |
| 454 | setTerminalToolCallState(toolCall, { |
| 455 | status: MothershipStreamV1ToolOutcome.cancelled, |
| 456 | error: message, |
| 457 | }) |
| 458 | } |
| 459 | |
| 460 | if (abortRequested(context, execContext, options)) { |
| 461 | markToolCallCancelled('Request aborted before tool execution') |
no test coverage detected