AxAIMistralChatRequest
type AxAIMistralChatRequest = Omit<AxAIOpenAIChatRequest<AxAIMistralModel>, "max_completion_tokens" | "stream_options" | "messages"> & object;
Defined in: https://github.com/ax-llm/ax/blob/d2df625e2c2fd70a090d6321c042579c2819f0d1/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; })[] |