Providers
Sintético
Synthetic disponibiliza endpoints compatíveis com a Anthropic.
O OpenClaw o inclui como o provedor synthetic e usa a API Messages da
Anthropic.
| Propriedade | Valor |
|---|---|
| Provedor | synthetic |
| Autenticação | SYNTHETIC_API_KEY |
| API | Anthropic Messages |
| URL base | https://api.synthetic.new/anthropic |
Primeiros passos
Obter uma chave de API
Obtenha uma SYNTHETIC_API_KEY na sua conta da Synthetic ou permita que a
integração inicial solicite uma.
Executar a integração inicial
openclaw onboard --auth-choice synthetic-api-keyVerificar o modelo padrão
A integração inicial define o seguinte modelo padrão:
synthetic/hf:MiniMaxAI/MiniMax-M2.5Exemplo de configuração
{ 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, }, ], }, }, },}Catálogo integrado
Todos os modelos da Synthetic têm custo 0 (entrada/saída/cache).
| ID do modelo | Janela de contexto | Máx. de tokens | Raciocínio | Entrada |
|---|---|---|---|---|
hf:MiniMaxAI/MiniMax-M2.5 |
192,000 | 65,536 | não | texto |
hf:moonshotai/Kimi-K2-Thinking |
256,000 | 8,192 | sim | texto |
hf:zai-org/GLM-4.7 |
198,000 | 128,000 | não | texto |
hf:deepseek-ai/DeepSeek-R1-0528 |
128,000 | 8,192 | não | texto |
hf:deepseek-ai/DeepSeek-V3-0324 |
128,000 | 8,192 | não | texto |
hf:deepseek-ai/DeepSeek-V3.1 |
128,000 | 8,192 | não | texto |
hf:deepseek-ai/DeepSeek-V3.1-Terminus |
128,000 | 8,192 | não | texto |
hf:deepseek-ai/DeepSeek-V3.2 |
159,000 | 8,192 | não | texto |
hf:meta-llama/Llama-3.3-70B-Instruct |
128,000 | 8,192 | não | texto |
hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8 |
524,000 | 8,192 | não | texto |
hf:moonshotai/Kimi-K2-Instruct-0905 |
256,000 | 8,192 | não | texto |
hf:moonshotai/Kimi-K2.5 |
256,000 | 8,192 | sim | texto + imagem |
hf:openai/gpt-oss-120b |
128,000 | 8,192 | não | texto |
hf:Qwen/Qwen3-235B-A22B-Instruct-2507 |
256,000 | 8,192 | não | texto |
hf:Qwen/Qwen3-Coder-480B-A35B-Instruct |
256,000 | 8,192 | não | texto |
hf:Qwen/Qwen3-VL-235B-A22B-Instruct |
250,000 | 8,192 | não | texto + imagem |
hf:zai-org/GLM-4.5 |
128,000 | 128,000 | não | texto |
hf:zai-org/GLM-4.6 |
198,000 | 128,000 | não | texto |
hf:zai-org/GLM-5 |
256,000 | 128,000 | sim | texto + imagem |
hf:deepseek-ai/DeepSeek-V3 |
128,000 | 8,192 | não | texto |
hf:Qwen/Qwen3-235B-A22B-Thinking-2507 |
256,000 | 8,192 | sim | texto |
Lista de modelos permitidos
Se você habilitar uma lista de modelos permitidos (agents.defaults.models),
adicione todos os modelos da Synthetic que pretende usar. Os modelos que não
estiverem na lista ficarão ocultos para o agente.
Substituição da URL base
Se a Synthetic alterar seu endpoint de API, substitua a URL base:
{ models: { providers: { synthetic: { baseUrl: "https://new-api.synthetic.new/anthropic", }, }, },}O OpenClaw continuará acrescentando /v1 automaticamente.
Conteúdo relacionado
Was this useful?