From 5be846802f7fec7f340a57ea662a43650d561921 Mon Sep 17 00:00:00 2001 From: DronNick Date: Tue, 9 Dec 2025 02:54:08 +0100 Subject: [PATCH] Added compat flags to model config example for ollama (#152) --- packages/coding-agent/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/coding-agent/README.md b/packages/coding-agent/README.md index 1f778e8b..b26ee084 100644 --- a/packages/coding-agent/README.md +++ b/packages/coding-agent/README.md @@ -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 + } } ] },