diff options
| author | Paul Buetow <paul@buetow.org> | 2025-09-26 19:34:19 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-09-26 19:34:19 +0300 |
| commit | 0583b360ceb606b8e58f12a17f588bd27feeb117 (patch) | |
| tree | ae8ac0d7968a409a76d18d84e080d02da52ce775 /config.toml.example | |
| parent | 869c018a7a26285263cf7692f25f6aa44e2635c9 (diff) | |
Add per-surface provider overrides and wiring
Diffstat (limited to 'config.toml.example')
| -rw-r--r-- | config.toml.example | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config.toml.example b/config.toml.example index 9ac6f51..e5a75f4 100644 --- a/config.toml.example +++ b/config.toml.example @@ -27,6 +27,21 @@ inline_close = ">" # single-character chat_suffix = ">" # single-character chat_prefixes = ["?", "!", ":", ";"] # single-character items +[models] +# Shorthand string form per surface +# completion = "gpt-4o-mini" +# chat = "gpt-4.1" + +[models.code_action] +# model = "gpt-4o" +# provider = "copilot" +# temperature = 0.4 + +[models.cli] +# model = "gpt-4.1" +# provider = "openai" +# temperature = 0.6 + [provider] name = "openai" # openai | copilot | ollama |
