Providers

Mistral

AISDK provides first-class support for Mistral with fully typed model APIs. Model capabilities are enforced at compile time using Rust's type system. This prevents model capability mismatches and guarantees the selected model is valid for the task (e.g. tool calling).

Installation

Enable the Mistral provider feature:

cargo add aisdk --features mistral

This installs AISDK with the Mistral provider enabled. Once you have enabled the Mistral provider, you can use all aisdk features with it.

Create a Provider Instance

To create a provider instance, call Mistral::model_name(), where model_name is the Mistral model you want to use. Model names are exposed as snake-case methods.

use aisdk::providers::Mistral;

let mistral = Mistral::codestral_latest();

This initializes the provider with:

  • Model: "codestral-latest"
  • API key from environment (if set with MISTRAL_API_KEY)
  • Mistral's default base URL (https://api.mistral.ai/v1/)

Basic Text Generation

Example using LanguageModelRequest for text generation.

use aisdk::{
    core::LanguageModelRequest,
    providers::Mistral,
};

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {

    let mistral = Mistral::codestral_latest();

    let response = LanguageModelRequest::builder()
        .model(mistral)
        .prompt("Write a short poem about Rust.")
        .build()
        .generate_text()
        .await?;

    println!("Response text: {:?}", response.text());
    Ok(())
}

Provider Settings

You can customize provider configuration using Mistral::builder()

API Key

let mistral = Mistral::<CodestralLatest>::builder()
    .api_key("your-api-key")
    .build()?;

If not specified, AISDK uses the MISTRAL_API_KEY environment variable.

Base URL

Useful when routing through a proxy, gateway, or self-hosted compatible endpoint.

let mistral = Mistral::<CodestralLatest>::builder()
    .base_url("https://api.mistral.ai/v1/")
    .build()?;

Path (Full URL Override)

Use .path(...) to override the full request URL instead of only the base URL.

let mistral = Mistral::<CodestralLatest>::builder()
    .path("https://full-url.example/v1/chat/completions")
    .build()?;

Provider Name

For logging, analytics, and observability.

let mistral = Mistral::<CodestralLatest>::builder()
    .provider_name("Mistral")
    .build()?;

Full Custom Configuration Example

let mistral = Mistral::<CodestralLatest>::builder()
    .api_key("your-api-key")
    .base_url("https://api.mistral.ai/v1/")
    .path("https://full-url.example/v1/chat/completions")
    .provider_name("Mistral")
    .build()?;

Dynamic Model Selection

For runtime model selection (e.g., loading models from config files), use DynamicModel:

Using model_name() Method with Default Settings

use aisdk::providers::Mistral;

// Specify model as a string at runtime
let mistral = Mistral::model_name("codestral-latest");

Using Builder Pattern with Custom Settings

use aisdk::{
    core::DynamicModel,
    providers::Mistral,
};

let mistral = Mistral::<DynamicModel>::builder()
	.model_name("codestral-latest")
	.api_key("your-api-key")
	.base_url("https://api.mistral.ai/v1/")
	.path("https://full-url.example/v1/chat/completions")
	.provider_name("Mistral")
	.build()?;

Warning: When using DynamicModel, model capabilities are not validated at compile time. This means there's no guarantee the model supports requested features (e.g., tool calls, structured output). For compile-time safety, use the typed methods like Mistral::codestral_latest().

Next Steps