@hbbio/nanoagent
    Preparing search index...

    Type Alias ToolCall

    Schema for an individual tool call attached to an assistant turn.

    type ToolCall = {
        function: { arguments: string | Record<string, unknown>; name: string };
        id: string;
        type: "function";
    }
    Index

    Properties

    Properties

    function: { arguments: string | Record<string, unknown>; name: string }
    id: string
    type: "function"