Sanitized for public release: - Removed all API keys, tokens, and secrets - Removed personal Discord IDs from hermes-openclaw.json - Updated git URLs to be generic placeholders - All sensitive data uses environment variable interpolation
72 lines
No EOL
1.6 KiB
JSON
72 lines
No EOL
1.6 KiB
JSON
{
|
|
"openai": {
|
|
"baseUrl": "https://api.openai.com/v1",
|
|
"api": "openai-completions",
|
|
"models": [
|
|
{
|
|
"id": "gpt-4o",
|
|
"name": "GPT-4o",
|
|
"reasoning": false,
|
|
"input": ["text", "image", "audio"],
|
|
"contextWindow": 128000,
|
|
"maxTokens": 16384
|
|
},
|
|
{
|
|
"id": "gpt-4o-mini",
|
|
"name": "GPT-4o Mini",
|
|
"reasoning": false,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 128000,
|
|
"maxTokens": 16384
|
|
},
|
|
{
|
|
"id": "gpt-4-turbo",
|
|
"name": "GPT-4 Turbo",
|
|
"reasoning": false,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 128000,
|
|
"maxTokens": 4096
|
|
},
|
|
{
|
|
"id": "gpt-4",
|
|
"name": "GPT-4",
|
|
"reasoning": false,
|
|
"input": ["text"],
|
|
"contextWindow": 8192,
|
|
"maxTokens": 4096
|
|
},
|
|
{
|
|
"id": "o1",
|
|
"name": "o1",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 200000,
|
|
"maxTokens": 100000
|
|
},
|
|
{
|
|
"id": "o1-mini",
|
|
"name": "o1 Mini",
|
|
"reasoning": true,
|
|
"input": ["text", "image"],
|
|
"contextWindow": 128000,
|
|
"maxTokens": 65536
|
|
},
|
|
{
|
|
"id": "o1-pro",
|
|
"name": "o1 Pro",
|
|
"reasoning": true,
|
|
"input": ["text"],
|
|
"contextWindow": 200000,
|
|
"maxTokens": 100000
|
|
},
|
|
{
|
|
"id": "gpt-3.5-turbo",
|
|
"name": "GPT-3.5 Turbo",
|
|
"reasoning": false,
|
|
"input": ["text"],
|
|
"contextWindow": 16385,
|
|
"maxTokens": 4096
|
|
}
|
|
]
|
|
}
|
|
} |