- 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
72 lines
No EOL
1.9 KiB
JSON
72 lines
No EOL
1.9 KiB
JSON
{
|
|
"openrouter": {
|
|
"baseUrl": "https://openrouter.ai/api/v1",
|
|
"api": "openai-completions",
|
|
"models": [
|
|
{
|
|
"id": "anthropic/claude-3.5-sonnet",
|
|
"name": "Claude 3.5 Sonnet (via OpenRouter)",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 200000,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "openai/gpt-4o",
|
|
"name": "GPT-4o (via OpenRouter)",
|
|
"reasoning": false,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 128000,
|
|
"maxTokens": 16384
|
|
},
|
|
{
|
|
"id": "google/gemini-pro-1.5",
|
|
"name": "Gemini Pro 1.5 (via OpenRouter)",
|
|
"reasoning": true,
|
|
"input": ["text", "image", "video"],
|
|
"contextWindow": 1000000,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "meta-llama/llama-3.1-405b-instruct",
|
|
"name": "Llama 3.1 405B (via OpenRouter)",
|
|
"reasoning": false,
|
|
"input": ["text"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 4096
|
|
},
|
|
{
|
|
"id": "deepseek/deepseek-r1",
|
|
"name": "DeepSeek R1 (via OpenRouter)",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 64000,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "qwen/qwen-2.5-72b-instruct",
|
|
"name": "Qwen 2.5 72B (via OpenRouter)",
|
|
"reasoning": false,
|
|
"input": ["text"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "mistralai/mistral-large",
|
|
"name": "Mistral Large (via OpenRouter)",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 8192
|
|
},
|
|
{
|
|
"id": "x-ai/grok-2",
|
|
"name": "Grok 2 (via OpenRouter)",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 131072,
|
|
"maxTokens": 8192
|
|
}
|
|
]
|
|
}
|
|
} |