vapor-chamber API reference - v1.3.0
    Preparing search index...

    Type Alias AnthropicTool

    type AnthropicTool = {
        name: string;
        description?: string;
        input_schema: {
            type: "object";
            properties: {
                target?: {
                    type: "object";
                    properties: Record<string, { type: string }>;
                };
                payload?: {
                    type: "object";
                    properties: Record<string, { type: string }>;
                };
            };
        };
    }
    Index

    Properties

    name: string
    description?: string
    input_schema: {
        type: "object";
        properties: {
            target?: {
                type: "object";
                properties: Record<string, { type: string }>;
            };
            payload?: { type: "object"; properties: Record<string, { type: string }> };
        };
    }