langchain.js
    Preparing search index...

    Interface ChatMistralAICallOptions

    interface ChatMistralAICallOptions {
        response_format?: { type: "text" | "json_object" };
        streamUsage?: boolean;
        tool_choice?: ChatCompletionRequestToolChoice;
        tools?: any[];
        [key: string]: BaseLanguageModelCallOptions;
        [key: number]: BaseLanguageModelCallOptions;
        [key: symbol]: BaseLanguageModelCallOptions;
    }

    Hierarchy

    Indexable

    • [key: string]: BaseLanguageModelCallOptions
    • [key: number]: BaseLanguageModelCallOptions
    • [key: symbol]: BaseLanguageModelCallOptions
    Index

    Properties

    response_format?: { type: "text" | "json_object" }
    streamUsage?: boolean

    Whether or not to include token usage in the stream.

    {true}
    
    tool_choice?: ChatCompletionRequestToolChoice
    tools?: any[]