From 1731126b52e406a300270c8fc8ac1061a4422b27 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 26 Sep 2025 20:19:41 +0300 Subject: Refactor surface config to support multi-provider arrays --- config.toml.example | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'config.toml.example') diff --git a/config.toml.example b/config.toml.example index e5a75f4..1bed1a9 100644 --- a/config.toml.example +++ b/config.toml.example @@ -28,18 +28,29 @@ chat_suffix = ">" # single-character chat_prefixes = ["?", "!", ":", ";"] # single-character items [models] -# Shorthand string form per surface +# Shorthand string form per surface (single entry) # completion = "gpt-4o-mini" # chat = "gpt-4.1" -[models.code_action] -# model = "gpt-4o" +# Full array form for multiple entries +# [[models.completion]] +# provider = "openai" +# model = "gpt-4o-mini" +# temperature = 0.2 +# +# [[models.completion]] +# provider = "ollama" +# model = "mistral" +# temperature = 0.2 + +# [[models.code_action]] # provider = "copilot" +# model = "gpt-4o" # temperature = 0.4 -[models.cli] -# model = "gpt-4.1" +# [[models.cli]] # provider = "openai" +# model = "gpt-4.1" # temperature = 0.6 [provider] -- cgit v1.2.3