Heroku LangChain - v0.2.1
    Preparing search index...

    Interface HerokuToolCall

    Represents a tool call made by the assistant, as per Heroku API. Source: SPECS.md 2.5.3 & Heroku /v1/chat/completions doc (tool_calls array)

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

    Properties

    Properties

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