- Replace closed Model enum with flexible string-based Model type with constructor methods for all current models (Mistral Large 3, Small 4, Magistral, Codestral, Devstral, Pixtral, Voxtral, etc.) - Add new API endpoints: FIM completions, Files, Fine-tuning, Batch jobs, OCR, Audio transcription, Moderations/Classifications, and Agent completions (sync + async for all) - Add new chat fields: frequency_penalty, presence_penalty, stop, n, parallel_tool_calls, reasoning_effort, min_tokens, json_schema response format - Add embedding fields: output_dimension, output_dtype - Tool parameters now accept raw JSON Schema (serde_json::Value) instead of limited enum types - Add tool call IDs and Required tool choice variant - Add DELETE HTTP method support and multipart file upload - Bump thiserror to v2, add reqwest multipart feature - Remove strum dependency (no longer needed) - Update all tests and examples for new API
78 lines
2.1 KiB
Rust
78 lines
2.1 KiB
Rust
use mistralai_client::v1::{
|
|
chat::{ChatMessage, ChatParams},
|
|
client::Client,
|
|
constants::Model,
|
|
tool::{Function, Tool, ToolChoice},
|
|
};
|
|
use serde::Deserialize;
|
|
use std::any::Any;
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
struct GetCityTemperatureArguments {
|
|
city: String,
|
|
}
|
|
|
|
struct GetCityTemperatureFunction;
|
|
#[async_trait::async_trait]
|
|
impl Function for GetCityTemperatureFunction {
|
|
async fn execute(&self, arguments: String) -> Box<dyn Any + Send> {
|
|
let GetCityTemperatureArguments { city } = serde_json::from_str(&arguments).unwrap();
|
|
|
|
let temperature = match city.as_str() {
|
|
"Paris" => "20°C",
|
|
_ => "Unknown city",
|
|
};
|
|
|
|
Box::new(temperature.to_string())
|
|
}
|
|
}
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let tools = vec![Tool::new(
|
|
"get_city_temperature".to_string(),
|
|
"Get the current temperature in a city.".to_string(),
|
|
serde_json::json!({
|
|
"type": "object",
|
|
"properties": {
|
|
"city": {
|
|
"type": "string",
|
|
"description": "The name of the city."
|
|
}
|
|
},
|
|
"required": ["city"]
|
|
}),
|
|
)];
|
|
|
|
// This example suppose you have set the `MISTRAL_API_KEY` environment variable.
|
|
let mut client = Client::new(None, None, None, None).unwrap();
|
|
client.register_function(
|
|
"get_city_temperature".to_string(),
|
|
Box::new(GetCityTemperatureFunction),
|
|
);
|
|
|
|
let model = Model::mistral_small_latest();
|
|
let messages = vec![ChatMessage::new_user_message(
|
|
"What's the temperature in Paris?",
|
|
)];
|
|
let options = ChatParams {
|
|
temperature: Some(0.0),
|
|
random_seed: Some(42),
|
|
tool_choice: Some(ToolChoice::Auto),
|
|
tools: Some(tools),
|
|
..Default::default()
|
|
};
|
|
|
|
client
|
|
.chat_async(model, messages, Some(options))
|
|
.await
|
|
.unwrap();
|
|
let temperature = client
|
|
.get_last_function_call_result()
|
|
.unwrap()
|
|
.downcast::<String>()
|
|
.unwrap();
|
|
println!("The temperature in Paris is: {}.", temperature);
|
|
// => "The temperature in Paris is: 20°C."
|
|
}
|