Open Source · language
Use Mistral Large 2 with Rust
Updated 2026-05-21 · By XALEN
How to use Mistral Large 2 (Open Source, 123B) with Rust. Install, authenticate, and make your first API call in minutes. Working code example included.
Model
Mistral Large 2
123B · 128K context · $0.06 input
Framework
Rust
language · cargo add async-openai
1. Install
cargo add async-openai
2. Code
use async_openai::{Client, config::OpenAIConfig, types::*};
#[tokio::main]
async fn main() {
let config = OpenAIConfig::new()
.with_api_key("xln_test_YOUR_KEY")
.with_api_base("https://api.xalen.io/v1");
let client = Client::with_config(config);
let request = CreateChatCompletionRequestArgs::default()
.model("mistral-large-2")
.messages(vec![ChatCompletionRequestUserMessageArgs::default()
.content("Hello from Rust!").build().unwrap().into()])
.build().unwrap();
let response = client.chat().create(request).await.unwrap();
println!("{}", response.choices[0].message.content.as_ref().unwrap());
}
Mistral Large 2 with Other Frameworks
Other Models with Rust
200+ models. One API. Works with any framework.
Get API KeyLast updated: 2026-05-21