interface ChatMistralAICallOptions {
    response_format?: {
        type: "text" | "json_object";
    };
    streamUsage?: boolean;
    tool_choice?: "auto" | "any" | "none";
    tools?: any[];
}

Hierarchy

  • Omit<Toolkit, "stop">
    • ChatMistralAICallOptions

Properties

response_format?: {
    type: "text" | "json_object";
}

Type declaration

  • type: "text" | "json_object"
streamUsage?: boolean

Whether or not to include token usage in the stream.

Default

{true}
tool_choice?: "auto" | "any" | "none"
tools?: any[]

Generated using TypeDoc