diff options
| author | Paul Buetow <paul@buetow.org> | 2025-08-18 09:11:20 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-08-18 09:11:20 +0300 |
| commit | 3217d2738af345629e7da14c52fa4ee5cb288fe9 (patch) | |
| tree | 29381af9217aabc8fb9029225bfd7650e8f20717 /config.json.example | |
| parent | 041d1f140436c6fdd223844b04c6592c84951878 (diff) | |
feat(config): per-provider temperature defaults and docs\n\n- Add , , to config with coding-friendly default 0.2.\n- Wire defaults through providers (OpenAI, Copilot, Ollama).\n- Update CLI and LSP runners to pass configured temperatures.\n- Document temperature behavior and examples in README.\n- Update config.json.example to show new keys.
Diffstat (limited to 'config.json.example')
| -rw-r--r-- | config.json.example | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config.json.example b/config.json.example index 359e862..04ecfb7 100644 --- a/config.json.example +++ b/config.json.example @@ -11,10 +11,13 @@ "openai_model": "gpt-4.1", "openai_base_url": "https://api.openai.com/v1", + "openai_temperature": 0.2, - "ollama_model": "qwen2.5-coder:latest", + "ollama_model": "qwen3-coder:30b-a3b-q4_K_M", "ollama_base_url": "http://localhost:11434", + "ollama_temperature": 0.2, "copilot_model": "gpt-4.1", - "copilot_base_url": "https://api.githubcopilot.com" + "copilot_base_url": "https://api.githubcopilot.com", + "copilot_temperature": 0.2 } |
