Added compat flags to model config example for ollama (#152)

This commit is contained in:
DronNick 2025-12-09 02:54:08 +01:00 committed by GitHub
parent d56a0463df
commit 5be846802f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -205,7 +205,11 @@ You can add custom models and providers (like Ollama, vLLM, LM Studio, or any cu
"input": ["text"],
"cost": {"input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0},
"contextWindow": 128000,
"maxTokens": 32000
"maxTokens": 32000,
"compat": {
"supportsDeveloperRole": false,
"supportsStore": false
}
}
]
},