mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-13 11:00:50 +00:00
* Onboard: add Mistral auth choice and CLI flags * Onboard/Auth: add Mistral provider config defaults * Auth choice: wire Mistral API-key flow * Onboard non-interactive: support --mistral-api-key * Media understanding: add Mistral Voxtral audio provider * Changelog: note Mistral onboarding and media support * Docs: add Mistral provider and onboarding/media references * Tests: cover Mistral media registry/defaults and auth mapping * Memory: add Mistral embeddings provider support * Onboarding: refresh Mistral model metadata * Docs: document Mistral embeddings and endpoints * Memory: persist Mistral embedding client state in managers * Memory: add regressions for mistral provider wiring * Gateway: add live tool probe retry helper * Gateway: cover live tool probe retry helper * Gateway: retry malformed live tool-read probe responses * Memory: support plain-text batch error bodies * Tests: add Mistral Voxtral live transcription smoke * Docs: add Mistral live audio test command * Revert: remove Mistral live voice test and docs entry * Onboard: re-export Mistral default model ref from models * Changelog: credit joeVenner for Mistral work * fix: include Mistral in auto audio key fallback * Update CHANGELOG.md * Update CHANGELOG.md --------- Co-authored-by: Shakker <shakkerdroid@gmail.com>
71 lines
2.2 KiB
Markdown
71 lines
2.2 KiB
Markdown
---
|
|
summary: "Model providers (LLMs) supported by OpenClaw"
|
|
read_when:
|
|
- You want to choose a model provider
|
|
- You need a quick overview of supported LLM backends
|
|
title: "Model Providers"
|
|
---
|
|
|
|
# Model Providers
|
|
|
|
OpenClaw can use many LLM providers. Pick a provider, authenticate, then set the
|
|
default model as `provider/model`.
|
|
|
|
Looking for chat channel docs (WhatsApp/Telegram/Discord/Slack/Mattermost (plugin)/etc.)? See [Channels](/channels).
|
|
|
|
## Highlight: Venice (Venice AI)
|
|
|
|
Venice is our recommended Venice AI setup for privacy-first inference with an option to use Opus for hard tasks.
|
|
|
|
- Default: `venice/llama-3.3-70b`
|
|
- Best overall: `venice/claude-opus-45` (Opus remains the strongest)
|
|
|
|
See [Venice AI](/providers/venice).
|
|
|
|
## Quick start
|
|
|
|
1. Authenticate with the provider (usually via `openclaw onboard`).
|
|
2. Set the default model:
|
|
|
|
```json5
|
|
{
|
|
agents: { defaults: { model: { primary: "anthropic/claude-opus-4-6" } } },
|
|
}
|
|
```
|
|
|
|
## Provider docs
|
|
|
|
- [OpenAI (API + Codex)](/providers/openai)
|
|
- [Anthropic (API + Claude Code CLI)](/providers/anthropic)
|
|
- [Qwen (OAuth)](/providers/qwen)
|
|
- [OpenRouter](/providers/openrouter)
|
|
- [LiteLLM (unified gateway)](/providers/litellm)
|
|
- [Vercel AI Gateway](/providers/vercel-ai-gateway)
|
|
- [Together AI](/providers/together)
|
|
- [Cloudflare AI Gateway](/providers/cloudflare-ai-gateway)
|
|
- [Moonshot AI (Kimi + Kimi Coding)](/providers/moonshot)
|
|
- [Mistral](/providers/mistral)
|
|
- [OpenCode Zen](/providers/opencode)
|
|
- [Amazon Bedrock](/providers/bedrock)
|
|
- [Z.AI](/providers/zai)
|
|
- [Xiaomi](/providers/xiaomi)
|
|
- [GLM models](/providers/glm)
|
|
- [MiniMax](/providers/minimax)
|
|
- [Venice (Venice AI, privacy-focused)](/providers/venice)
|
|
- [Hugging Face (Inference)](/providers/huggingface)
|
|
- [Ollama (local models)](/providers/ollama)
|
|
- [vLLM (local models)](/providers/vllm)
|
|
- [Qianfan](/providers/qianfan)
|
|
- [NVIDIA](/providers/nvidia)
|
|
|
|
## Transcription providers
|
|
|
|
- [Deepgram (audio transcription)](/providers/deepgram)
|
|
|
|
## Community tools
|
|
|
|
- [Claude Max API Proxy](/providers/claude-max-api-proxy) - Use Claude Max/Pro subscription as an OpenAI-compatible API endpoint
|
|
|
|
For the full provider catalog (xAI, Groq, Mistral, etc.) and advanced configuration,
|
|
see [Model providers](/concepts/model-providers).
|