메인 콘텐츠로 건너뛰기

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는 Anthropic 호환 엔드포인트를 제공합니다. OpenClaw는 이를 synthetic provider로 등록하고 Anthropic Messages API를 사용합니다.
PropertyValue
Providersynthetic
AuthSYNTHETIC_API_KEY
APIAnthropic Messages
Base URLhttps://api.synthetic.new/anthropic

시작하기

1

API 키 받기

Synthetic 계정에서 SYNTHETIC_API_KEY를 발급받거나, 온보딩 마법사가 이를 묻도록 하세요.
2

온보딩 실행

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

기본 모델 확인

온보딩 후 기본 모델은 다음으로 설정됩니다.
synthetic/hf:MiniMaxAI/MiniMax-M2.5
OpenClaw의 Anthropic 클라이언트는 base URL에 /v1을 자동으로 붙이므로 https://api.synthetic.new/anthropic를 사용하세요(/anthropic/v1 아님). Synthetic가 base URL을 변경하면 models.providers.synthetic.baseUrl을 재정의하세요.

config 예시

{
  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,
          },
        ],
      },
    },
  },
}

내장 카탈로그

모든 Synthetic 모델은 비용이 0입니다(input/output/cache).
Model IDContext windowMax tokensReasoningInput
hf:MiniMaxAI/MiniMax-M2.5192,00065,536notext
hf:moonshotai/Kimi-K2-Thinking256,0008,192yestext
hf:zai-org/GLM-4.7198,000128,000notext
hf:deepseek-ai/DeepSeek-R1-0528128,0008,192notext
hf:deepseek-ai/DeepSeek-V3-0324128,0008,192notext
hf:deepseek-ai/DeepSeek-V3.1128,0008,192notext
hf:deepseek-ai/DeepSeek-V3.1-Terminus128,0008,192notext
hf:deepseek-ai/DeepSeek-V3.2159,0008,192notext
hf:meta-llama/Llama-3.3-70B-Instruct128,0008,192notext
hf:meta-llama/Llama-4-Maverick-17B-128E-Instruct-FP8524,0008,192notext
hf:moonshotai/Kimi-K2-Instruct-0905256,0008,192notext
hf:moonshotai/Kimi-K2.5256,0008,192yestext + image
hf:openai/gpt-oss-120b128,0008,192notext
hf:Qwen/Qwen3-235B-A22B-Instruct-2507256,0008,192notext
hf:Qwen/Qwen3-Coder-480B-A35B-Instruct256,0008,192notext
hf:Qwen/Qwen3-VL-235B-A22B-Instruct250,0008,192notext + image
hf:zai-org/GLM-4.5128,000128,000notext
hf:zai-org/GLM-4.6198,000128,000notext
hf:zai-org/GLM-5256,000128,000yestext + image
hf:deepseek-ai/DeepSeek-V3128,0008,192notext
hf:Qwen/Qwen3-235B-A22B-Thinking-2507256,0008,192yestext
모델 ref는 synthetic/<modelId> 형식을 사용합니다. 계정에서 사용할 수 있는 모든 모델을 보려면 openclaw models list --provider synthetic를 사용하세요.
모델 allowlist(agents.defaults.models)를 활성화하면, 사용할 계획인 모든 Synthetic 모델을 추가하세요. allowlist에 없는 모델은 에이전트에서 숨겨집니다.
Synthetic가 API 엔드포인트를 변경하면 config에서 base URL을 재정의하세요.
{
  models: {
    providers: {
      synthetic: {
        baseUrl: "https://new-api.synthetic.new/anthropic",
      },
    },
  },
}
OpenClaw가 /v1을 자동으로 붙인다는 점을 기억하세요.

관련 항목

모델 선택

Provider 규칙, 모델 ref, failover 동작.

구성 참조

provider 설정을 포함한 전체 config 스키마.

Synthetic

Synthetic 대시보드 및 API 문서.