summaryrefslogtreecommitdiff
path: root/config.toml.example
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-09-26 20:19:41 +0300
committerPaul Buetow <paul@buetow.org>2025-09-26 20:19:41 +0300
commit1731126b52e406a300270c8fc8ac1061a4422b27 (patch)
treec74768df49994aa9676cbc69ebfb461ed0422e01 /config.toml.example
parent0583b360ceb606b8e58f12a17f588bd27feeb117 (diff)
Refactor surface config to support multi-provider arrays
Diffstat (limited to 'config.toml.example')
-rw-r--r--config.toml.example21
1 files changed, 16 insertions, 5 deletions
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]