Providers
Synthetic
Synthetic stellt Anthropic-kompatible Endpunkte bereit.
OpenClaw bündelt es als Provider synthetic und verwendet die
Anthropic Messages API.
| Eigenschaft | Wert |
|---|---|
| Provider | synthetic |
| Auth | SYNTHETIC_API_KEY |
| API | Anthropic Messages |
| Basis-URL | https://api.synthetic.new/anthropic |
Erste Schritte
API-Schlüssel abrufen
Rufen Sie einen SYNTHETIC_API_KEY aus Ihrem Synthetic-Konto ab oder lassen Sie
sich beim Onboarding zur Eingabe eines Schlüssels auffordern.
Onboarding ausführen
openclaw onboard --auth-choice synthetic-api-keyStandardmodell überprüfen
Das Onboarding legt folgendes Standardmodell fest:
synthetic/hf:MiniMaxAI/MiniMax-M3Konfigurationsbeispiel
{ env: { SYNTHETIC_API_KEY: "sk-..." }, agents: { defaults: { model: { primary: "synthetic/hf:MiniMaxAI/MiniMax-M3" }, models: { "synthetic/hf:MiniMaxAI/MiniMax-M3": { alias: "MiniMax M3" } }, }, }, models: { mode: "merge", providers: { synthetic: { baseUrl: "https://api.synthetic.new/anthropic", apiKey: "${SYNTHETIC_API_KEY}", api: "anthropic-messages", models: [ { id: "hf:MiniMaxAI/MiniMax-M3", name: "MiniMax M3", reasoning: true, input: ["text", "image"], cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 }, contextWindow: 262144, maxTokens: 65536, }, ], }, }, },}Integrierter Katalog
Alle Synthetic-Modelle verwenden die Kosten 0 (Eingabe/Ausgabe/Cache). Informationen zur Dienstverfügbarkeit finden Sie in der
aktuellen Modellliste von Synthetic.
| Modell-ID | Kontextfenster | Max. Token | Schlussfolgern | Eingabe |
|---|---|---|---|---|
hf:MiniMaxAI/MiniMax-M3 |
262,144 | 65,536 | ja | Text + Bild |
hf:moonshotai/Kimi-K2.7-Code |
262,144 | 8,192 | ja | Text + Bild |
hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4 |
262,144 | 8,192 | ja | Text |
hf:openai/gpt-oss-120b |
131,072 | 8,192 | ja | Text |
hf:Qwen/Qwen3.6-27B |
262,144 | 81,920 | ja | Text + Bild |
hf:zai-org/GLM-4.7-Flash |
196,608 | 131,072 | ja | Text |
hf:zai-org/GLM-5.2 |
524,288 | 131,072 | ja | Text |
Modell-Positivliste
Wenn Sie eine Modell-Positivliste (agents.defaults.modelPolicy.allow) aktivieren, fügen Sie jedes
Synthetic-Modell hinzu, das Sie verwenden möchten. Modelle, die nicht in der Positivliste enthalten sind, werden
dem Agenten nicht angezeigt.
Basis-URL überschreiben
Falls Synthetic seinen API-Endpunkt ändert, überschreiben Sie die Basis-URL:
{ models: { providers: { synthetic: { baseUrl: "https://new-api.synthetic.new/anthropic", }, }, },}OpenClaw hängt /v1 weiterhin automatisch an.