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