Mayson Monorepo Documentation
    Preparing search index...

    Interface AIToolCall

    Tool call from AI response

    interface AIToolCall {
        id: string;
        type: "function";
        function: { name: string; arguments: string };
    }
    Index

    Properties

    Properties

    id: string
    type: "function"
    function: { name: string; arguments: string }