AxAIMistralChatRequest
type AxAIMistralChatRequest = Omit<AxAIOpenAIChatRequest<AxAIMistralModel>, "max_completion_tokens" | "stream_options" | "messages"> & object;
Defined in: https://github.com/ax-llm/ax/blob/8dfd0ce02b8cb386fb2c93fa280a2ec0da2d6011/src/ax/ai/mistral/api.ts#L30
Type declaration
Name | Type |
---|---|
max_tokens? | number |
messages | ( | { content : string ; role : "system" ; } | { content : | string | ( | { text : …; type : …; } | { image_url : …; type : …; })[]; name? : string ; role : "user" ; } | { content : string ; name? : string ; role : "assistant" ; tool_calls? : object []; } | { content : string ; role : "tool" ; tool_call_id : string ; })[] |