OpenInference JS
    Preparing search index...

    Represents a tool call requested by the model.

    interface ToolCallRequestPart {
        arguments?: Arguments;
        id?: Id;
        name: string;
        type: "tool_call";
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    Properties

    arguments?: Arguments
    id?: Id
    name: string
    type: "tool_call"