Interface ToolUseMessage

interface ToolUseMessage {
    actor: "ai";
    id: string;
    input: unknown;
    name: string;
    type: "tool_use";
}

Properties

Properties

actor: "ai"
id: string
input: unknown
name: string
type: "tool_use"