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

    Interface HerokuChatMessage

    Structure for a message in the Heroku API request/response. Source: SPECS.md Table HerokuMia Request Mapping & Heroku /v1/chat/completions doc (messages array)

    interface HerokuChatMessage {
        role: HerokuChatMessageRole;
        content: string | HerokuToolMessageContent[];
        name?: string;
        tool_calls?: HerokuToolCall[];
        tool_call_id?: string;
    }
    Index

    Properties

    content: string | HerokuToolMessageContent[]
    name?: string
    tool_calls?: HerokuToolCall[]
    tool_call_id?: string