(value: unknown)
| 76 | const isUnknownToolResult = Schema.is(ToolResultSchema); |
| 77 | |
| 78 | export const isToolResult = (value: unknown): value is ToolResult<unknown> => |
| 79 | isUnknownToolResult(value); |
| 80 | |
| 81 | /** |
| 82 | * Annotate the current span with the outcome of a tool invocation. |
no outgoing calls