@archastro/sdk
    Preparing search index...

    Variable aIToolCallSchemaConst

    aIToolCallSchema: ZodObject<
        {
            arguments: ZodRecord<
                ZodString,
                ZodType<{} | null, ZodTypeDef, {} | null>,
            >;
            id: ZodString;
            name: ZodString;
            thought_signature: ZodOptional<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            arguments: Record<string, {} | null>;
            id: string;
            name: string;
            thought_signature?: string;
        },
        {
            arguments: Record<string, {} | null>;
            id: string;
            name: string;
            thought_signature?: string;
        },
    > = ...

    Runtime validator for AIToolCall.