AxAIMistralChatRequest Generated TypeScript API reference. typescript api api/reference build/apidocs/TypeAlias.AxAIMistralChatRequest.md type AxAIMistralChatRequest

AxAIMistralChatRequest

TypeScript
type AxAIMistralChatRequest = Omit<AxAIOpenAIChatRequest<AxAIMistralModel>, "max_completion_tokens" | "stream_options" | "messages"> & object;

Defined in: https://github.com/ax-llm/ax/blob/5b28f9093bb70863b59459bb6df5062d005bce41/src/ax/ai/mistral/api.ts#L36

Type declaration

NameType
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; })[]
Docs