interface MistralAICallOptions {
    tools: StructuredToolInterface[] | MistralAIToolInput[] | Tool[];
    response_format?: {
        type: "text" | "json_object";
    };
    tool_choice?: "auto" | "none" | "any";
}

Hierarchy

  • Omit<Toolkit, "stop">
    • MistralAICallOptions

Properties

tools: StructuredToolInterface[] | MistralAIToolInput[] | Tool[]
response_format?: {
    type: "text" | "json_object";
}

Type declaration

  • type: "text" | "json_object"
tool_choice?: "auto" | "none" | "any"

Generated using TypeDoc