Zum Hauptinhalt springen

Documentation Index

Fetch the complete documentation index at: https://docs.openclaw.ai/llms.txt

Use this file to discover all available pages before exploring further.

Synthetic stellt Anthropic-kompatible Endpunkte bereit. OpenClaw registriert es als Provider synthetic und verwendet die Anthropic Messages API.
EigenschaftWert
Providersynthetic
AuthSYNTHETIC_API_KEY
APIAnthropic Messages
Base URLhttps://api.synthetic.new/anthropic

Erste Schritte

1

Einen API-Schlüssel holen

Besorgen Sie sich einen SYNTHETIC_API_KEY über Ihr Synthetic-Konto, oder lassen Sie sich im Onboarding-Assistenten danach fragen.
2

Onboarding ausführen

openclaw onboard --auth-choice synthetic-api-key
3

Das Standardmodell prüfen

Nach dem Onboarding ist das Standardmodell gesetzt auf:
synthetic/hf:MiniMaxAI/MiniMax-M2.5
Der Anthropic-Client von OpenClaw hängt automatisch /v1 an die Base URL an, daher verwenden Sie https://api.synthetic.new/anthropic (nicht /anthropic/v1). Wenn Synthetic seine Base URL ändert, überschreiben Sie models.providers.synthetic.baseUrl.

Konfigurationsbeispiel

{
  env: { SYNTHETIC_API_KEY: "sk-..." },
  agents: {
    defaults: {
      model: { primary: "synthetic/hf:MiniMaxAI/MiniMax-M2.5" },
      models: { "synthetic/hf:MiniMaxAI/MiniMax-M2.5": { alias: "MiniMax M2.5" } },
    },
  },
  models: {
    mode: "merge",
    providers: {
      synthetic: {
        baseUrl: "https://api.synthetic.new/anthropic",
        apiKey: "${SYNTHETIC_API_KEY}",
        api: "anthropic-messages",
        models: [
          {
            id: "hf:MiniMaxAI/MiniMax-M2.5",
            name: "MiniMax M2.5",
            reasoning: false,
            input: ["text"],
            cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },
            contextWindow: 192000,
            maxTokens: 65536,
          },
        ],
      },
    },
  },
}

Integrierter Katalog

Alle Synthetic-Modelle verwenden Kosten 0 (Eingabe/Ausgabe/Cache).
Modell-IDKontextfensterMax TokensReasoningEingabe
hf:MiniMaxAI/MiniMax-M2.5192,00065,536neinText
hf:moonshotai/Kimi-K2-Thinking256,0008,192jaText
hf:zai-org/GLM-4.7198,000128,000neinText
hf:deepseek-ai/DeepSeek-R1-0528128,0008,192neinText
hf:deepseek-ai/DeepSeek-V3-0324128,0008,192neinText
hf:deepseek-ai/DeepSeek-V3.1128,0008,192neinText
hf:deepseek-ai/DeepSeek-V3.1-Terminus128,0008,192neinText
hf:deepseek-ai/DeepSeek-V3.2159,0008,192neinText
hf:meta-llama/Llama-3.3-70B-Instruct128,0008,192neinText
hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8524,0008,192neinText
hf:moonshotai/Kimi-K2-Instruct-0905256,0008,192neinText
hf:moonshotai/Kimi-K2.5256,0008,192jaText + Bild
hf:openai/gpt-oss-120b128,0008,192neinText
hf:Qwen/Qwen3-235B-A22B-Instruct-2507256,0008,192neinText
hf:Qwen/Qwen3-Coder-480B-A35B-Instruct256,0008,192neinText
hf:Qwen/Qwen3-VL-235B-A22B-Instruct250,0008,192neinText + Bild
hf:zai-org/GLM-4.5128,000128,000neinText
hf:zai-org/GLM-4.6198,000128,000neinText
hf:zai-org/GLM-5256,000128,000jaText + Bild
hf:deepseek-ai/DeepSeek-V3128,0008,192neinText
hf:Qwen/Qwen3-235B-A22B-Thinking-2507256,0008,192jaText
Modell-Refs verwenden die Form synthetic/<modelId>. Verwenden Sie openclaw models list --provider synthetic, um alle für Ihr Konto verfügbaren Modelle zu sehen.
Wenn Sie eine Modell-Allowlist aktivieren (agents.defaults.models), fügen Sie jedes Synthetic-Modell hinzu, das Sie verwenden möchten. Modelle, die nicht in der Allowlist stehen, werden vor dem Agenten verborgen.
Wenn Synthetic seinen API-Endpunkt ändert, überschreiben Sie die Base URL in Ihrer Konfiguration:
{
  models: {
    providers: {
      synthetic: {
        baseUrl: "https://new-api.synthetic.new/anthropic",
      },
    },
  },
}
Denken Sie daran, dass OpenClaw /v1 automatisch anhängt.

Verwandt

Modellauswahl

Provider-Regeln, Modell-Refs und Failover-Verhalten.

Konfigurationsreferenz

Vollständiges Konfigurationsschema einschließlich Provider-Einstellungen.

Synthetic

Synthetic-Dashboard und API-Dokumentation.