> ## Documentation Index
> Fetch the complete documentation index at: https://openclawdoc.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Mistral

> Mistral モデルと Voxtral 音声転写を OpenClaw で使う設定ガイドです。API キー認証、モデル指定、転写や埋め込みでの活用方法を確認できます。

OpenClaw は、テキスト/イメージ モデル ルーティング (`mistral/...`) と、
メディア理解における Voxtral を介した音声転写。
Mistral はメモリ埋め込みにも使用できます (`memorySearch.provider = "mistral"`)。

## CLI セットアップ

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
openclaw onboard --auth-choice mistral-api-key
# or non-interactive
openclaw onboard --mistral-api-key "$MISTRAL_API_KEY"
```

## 構成スニペット (LLM プロバイダー)

```json5 theme={"theme":{"light":"min-light","dark":"min-dark"}}
{
  env: { MISTRAL_API_KEY: "sk-..." },
  agents: { defaults: { model: { primary: "mistral/mistral-large-latest" } } },
}
```

## 構成スニペット (Voxtral による音声転写)

```json5 theme={"theme":{"light":"min-light","dark":"min-dark"}}
{
  tools: {
    media: {
      audio: {
        enabled: true,
        models: [{ provider: "mistral", model: "voxtral-mini-latest" }],
      },
    },
  },
}
```

## 注意事項

* ミストラル認証は `MISTRAL_API_KEY` を使用します。
* プロバイダーのベース URL のデフォルトは `https://api.mistral.ai/v1` です。
* オンボーディングのデフォルト モデルは `mistral/mistral-large-latest` です。
* Mistral のメディアを理解するデフォルトのオーディオ モデルは `voxtral-mini-latest` です。
* メディア転写パスは `/v1/audio/transcriptions` を使用します。
* メモリ埋め込みパスは `/v1/embeddings` (デフォルト モデル: `mistral-embed`) を使用します。
