openboatmobile-ai/openclaw/models/combined.json
Mermaid Man ea73745147 refactor: restructure into hermes/ and openclaw/ directories
- Split cloudinit.tf into cloudinit-hermes.tf and cloudinit-openclaw.tf
- Split variables.tf into variables-common.tf, variables-hermes.tf, variables-openclaw.tf
- Move templates into hermes/templates/ and openclaw/templates/
- Move models/ into openclaw/models/
- Move hermes-openclaw.json to openclaw/openclaw-reference.json
- Move hermes docs to hermes/docs/
- OpenClaw cloudinit now uses variables instead of hardcoded values
- All 48 variable references verified against definitions
2026-04-24 19:45:03 +00:00

90 lines
No EOL
2.2 KiB
JSON

{
"venice": {
"baseUrl": "https://api.venice.ai/api/v1",
"api": "openai-completions",
"models": {
"zai-org-glm-5": {
"name": "GLM 5",
"reasoning": true,
"input": ["text"],
"contextWindow": 202752,
"maxTokens": 8192
},
"olafangensan-glm-4.7-flash-heretic": {
"name": "GLM 4.7 Flash Heretic",
"reasoning": true,
"input": ["text"],
"contextWindow": 131072,
"maxTokens": 8192
},
"kimi-k2-5": {
"name": "Kimi K2.5",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 256000,
"maxTokens": 65536
},
"deepseek-v3.2": {
"name": "DeepSeek V3.2",
"reasoning": true,
"input": ["text"],
"contextWindow": 64000,
"maxTokens": 8192
}
}
},
"openai": {
"baseUrl": "https://api.openai.com/v1",
"api": "openai-completions",
"models": {
"gpt-4o": {
"name": "GPT-4o",
"reasoning": false,
"input": ["text", "image"],
"contextWindow": 128000,
"maxTokens": 16384
},
"gpt-4o-mini": {
"name": "GPT-4o Mini",
"reasoning": false,
"input": ["text", "image"],
"contextWindow": 128000,
"maxTokens": 16384
},
"o1": {
"name": "o1",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 200000,
"maxTokens": 100000
},
"o1-mini": {
"name": "o1 Mini",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 128000,
"maxTokens": 65536
}
}
},
"anthropic": {
"baseUrl": "https://api.anthropic.com/v1",
"api": "anthropic-messages",
"models": {
"claude-3.5-sonnet": {
"name": "Claude 3.5 Sonnet",
"reasoning": true,
"input": ["text", "image"],
"contextWindow": 200000,
"maxTokens": 8192
},
"claude-3.5-haiku": {
"name": "Claude 3.5 Haiku",
"reasoning": false,
"input": ["text", "image"],
"contextWindow": 200000,
"maxTokens": 8192
}
}
}
}