Files
config-center/compute/providers/ollama.json
xieyuanxiang b0e0cead04 chore: update field audit tables and provider configs
Batch update from official docs audit - price corrections, context
window fixes, field report updates across all providers.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-24 20:12:57 +08:00

34 lines
732 B
JSON

{
"id": "provider-local-ollama",
"provider": "ollama",
"label": "本地 Ollama",
"baseUrl": "http://localhost:11434/v1",
"apiFormat": "openai-completions",
"apiKeyRef": "",
"apiKeyVerified": false,
"enabled": false,
"status": "unconfigured",
"priceCurrency": "USD",
"services": [
"chat"
],
"models": [
{
"modelName": "llama3.1:70b",
"displayName": "Llama 3.1 70B",
"serviceType": ["chat"],
"description": "本地运行的 Llama 3.1 70B",
"contextWindow": 131072,
"maxOutputTokens": 8192,
"capabilities": [
"chat",
"code",
"reasoning"
],
"defaultTemperature": 0.8,
"defaultTopP": 0.9,
"extra": {}
}
]
}