Interface: ParsedToolCall
Defined in: src/batteries/llm/chat_common/tool_parsers.ts:39
A single tool call extracted from model output. arguments is a parsed object, never a string.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
arguments | Record<string, JsonValue> | The parsed argument object (never a JSON string). | src/batteries/llm/chat_common/tool_parsers.ts:43 |
name | string | The tool name the model called. | src/batteries/llm/chat_common/tool_parsers.ts:41 |