Heroku LangChain.js - v1.0.1
    Preparing search index...

    Interface HerokuToolCall

    Represents a tool call made by the assistant, as per Heroku API.

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

    Properties

    Properties

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