Skip to content

Commit 88cfaa9

Browse files
ericyangpanclaude
andcommitted
feat: add new AI models (Claude Opus 4, DeepSeek R1, Gemini 3 Pro)
- Add Claude Opus 4: 200K context, $15/$75 per million tokens - Add DeepSeek R1: 671B params, 64K context, $0.14 per million tokens - Add Gemini 3 Pro: Google's flagship model, 128K context, $1.25 per million tokens - Include bilingual descriptions (English + Chinese) - Add platform URLs for Hugging Face, Artificial Analysis, OpenRouter 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 2bf408c commit 88cfaa9

File tree

3 files changed

+81
-0
lines changed

3 files changed

+81
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"id": "claude-opus-4",
3+
"name": "Claude Opus 4",
4+
"description": "Claude Opus 4 is a 200K context window language model from Anthropic, designed for complex coding tasks.",
5+
"i18n": {
6+
"zh-Hans": {
7+
"description": "Claude Opus 4 是 Anthropic 推出的 200K 上下文窗口语言模型,专为复杂的代码生成任务设计。"
8+
}
9+
},
10+
"websiteUrl": "https://www.anthropic.com/",
11+
"docsUrl": "https://docs.anthropic.com/claude/docs/models-overview",
12+
"verified": false,
13+
"vendor": "Anthropic",
14+
"size": "Unknown",
15+
"totalContext": "200K",
16+
"maxOutput": "8K",
17+
"tokenPricing": {
18+
"input": 15,
19+
"output": 75,
20+
"cache": null
21+
},
22+
"platformUrls": {
23+
"huggingface": null,
24+
"artificialAnalysis": "https://artificialanalysis.ai/models/claude-opus-4",
25+
"openrouter": "https://openrouter.ai/anthropic/claude-opus-4"
26+
}
27+
}

manifests/models/deepseek-r1.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"id": "deepseek-r1",
3+
"name": "DeepSeek R1",
4+
"description": "DeepSeek R1 is a 1.3B parameter language model with 128K context window, designed for advanced reasoning and code generation tasks.",
5+
"i18n": {
6+
"zh-Hans": {
7+
"description": "DeepSeek R1 是 1.3B 参数的语言模型,具备 128K 上下文窗口,专为高级推理和代码生成任务设计。"
8+
}
9+
},
10+
"websiteUrl": "https://www.deepseek.com/",
11+
"docsUrl": "https://huggingface.co/deepseek-ai/DeepSeek-R1",
12+
"verified": false,
13+
"vendor": "DeepSeek",
14+
"size": "671B",
15+
"totalContext": "64K",
16+
"maxOutput": "4K",
17+
"tokenPricing": {
18+
"input": 0.14,
19+
"output": 0.14,
20+
"cache": null
21+
},
22+
"platformUrls": {
23+
"huggingface": "https://huggingface.co/deepseek-ai/DeepSeek-R1",
24+
"artificialAnalysis": "https://artificialanalysis.ai/models/deepseek-r1",
25+
"openrouter": "https://openrouter.ai/deepseek/deepseek-r1"
26+
}
27+
}

manifests/models/gemini-3-pro.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"id": "gemini-3-pro",
3+
"name": "Gemini 3 Pro",
4+
"description": "Google's flagship AI model for advanced reasoning, coding, mathematics, and science. Employs thinking capabilities for enhanced accuracy and nuanced context handling.",
5+
"i18n": {
6+
"zh-Hans": {
7+
"description": "Google 最先进的 AI 模型,专为高级推理、编码、数学和科学任务设计。采用\"思考\"能力,能够通过增强的准确性和细致的上下文处理进行推理。"
8+
}
9+
},
10+
"websiteUrl": "https://deepmind.google/",
11+
"docsUrl": "https://ai.google.dev/docs",
12+
"verified": false,
13+
"vendor": "Google",
14+
"size": "Unknown",
15+
"totalContext": "128K",
16+
"maxOutput": "8K",
17+
"tokenPricing": {
18+
"input": 1.25,
19+
"output": 1.25,
20+
"cache": null
21+
},
22+
"platformUrls": {
23+
"huggingface": null,
24+
"artificialAnalysis": "https://artificialanalysis.ai/models/gemini-3-pro",
25+
"openrouter": "https://openrouter.ai/google/gemini-3-pro"
26+
}
27+
}

0 commit comments

Comments
 (0)