| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- templates:
- - name: anthropic-official
- description: Anthropic's official API (claude.ai / console.anthropic.com)
- env:
- - name: ANTHROPIC_API_KEY
- hint: "Anthropic API key, starts with sk-ant-"
- - name: ANTHROPIC_BASE_URL
- hint: "Leave blank to use Anthropic's default endpoint"
- default: https://api.anthropic.com
- - name: openrouter
- description: OpenRouter unified API with Anthropic-compatible endpoint
- env:
- - name: ANTHROPIC_BASE_URL
- hint: "OpenRouter's Anthropic-compatible endpoint"
- default: https://openrouter.ai/api/v1
- - name: ANTHROPIC_AUTH_TOKEN
- hint: "OpenRouter API key, starts with sk-or-"
- - name: ANTHROPIC_MODEL
- hint: "Model slug, e.g. anthropic/claude-opus-4"
- - name: deepseek
- description: DeepSeek's Anthropic-compatible endpoint
- env:
- - name: ANTHROPIC_BASE_URL
- default: https://api.deepseek.com/anthropic
- - name: ANTHROPIC_AUTH_TOKEN
- hint: "DeepSeek API key, starts with sk-"
- - name: ANTHROPIC_MODEL
- hint: "e.g. deepseek-chat"
- default: deepseek-chat
- - name: moonshot
- description: Moonshot / Kimi K2 Anthropic-compatible endpoint
- env:
- - name: ANTHROPIC_BASE_URL
- default: https://api.moonshot.cn/anthropic
- - name: ANTHROPIC_AUTH_TOKEN
- hint: "Moonshot API key"
- - name: ANTHROPIC_MODEL
- hint: "e.g. kimi-k2-0905-preview"
- - name: zhipu
- description: Zhipu GLM's Anthropic-compatible endpoint
- env:
- - name: ANTHROPIC_BASE_URL
- default: https://open.bigmodel.cn/api/anthropic
- - name: ANTHROPIC_AUTH_TOKEN
- hint: "Zhipu / bigmodel.cn API key"
- - name: ANTHROPIC_MODEL
- hint: "e.g. glm-4.6"
- - name: custom-base
- description: Generic Anthropic-compatible endpoint (any OpenAI-ish proxy that exposes /v1/messages)
- env:
- - name: ANTHROPIC_BASE_URL
- hint: "Proxy's base URL, including /v1 if applicable"
- - name: ANTHROPIC_AUTH_TOKEN
- hint: "API key / bearer token"
- - name: ANTHROPIC_MODEL
- hint: "Model identifier expected by the proxy"
|