import { BaseContentBlock } from "./base.js"; //#region src/messages/content/tools.d.ts type Tools = never; declare namespace Tools { /** * Represents a request to call a tool. * * @example * ```ts * const toolCall: ToolCall = { * type: "tool_call", * name: "foo", * args: { a: 1 }, * callId: "123" * }; * ``` * This represents a request to call the tool named "foo" with arguments {"a": 1} * and an identifier of "123". */ interface ToolCall extends BaseContentBlock { /** * Type of the content block */ readonly type: "tool_call"; /** * The name of the tool being called */ name: TName; /** * The arguments to the tool call */ args: TArgs; } /** Content block to represent partial data of a tool call */ interface ToolCallChunk extends BaseContentBlock { /** * Type of the content block */ readonly type: "tool_call_chunk"; /** * The name of the tool being called */ name?: TName; /** * The arguments to the tool call */ args?: string; /** * The index of the tool call chunk */ index?: string | number; } /** Content block to represent an invalid tool call */ interface InvalidToolCall extends BaseContentBlock { /** * Type of the content block */ readonly type: "invalid_tool_call"; /** * The name of the tool being called */ name?: TName; /** * The arguments to the tool call */ args?: string; /** * An error message associated with the tool call */ error?: string; /** * Index of block in aggregate response */ index?: string | number; } interface ServerToolCall extends BaseContentBlock { /** * Type of the content block */ readonly type: "server_tool_call"; /** * The name of the tool being called */ name: TName; /** * The arguments to the tool call */ args: TArgs; } interface ServerToolCallChunk extends BaseContentBlock { /** * Type of the content block */ readonly type: "server_tool_call_chunk"; /** * The name of the tool being called */ name?: TName; /** * The arguments to the tool call */ args?: string; } interface ServerToolCallResult> extends BaseContentBlock { /** * Type of the content block */ readonly type: "server_tool_call_result"; /** * The unique identifier of the tool call that this result corresponds to */ toolCallId: string; /** * The status of the server tool call */ status: "success" | "error"; /** * The output of the server tool call */ output: TOutput; } type Standard = ToolCall | ToolCallChunk | InvalidToolCall | ServerToolCall | ServerToolCallChunk | ServerToolCallResult; } //#endregion export { Tools }; //# sourceMappingURL=tools.d.ts.map