summaryrefslogtreecommitdiff
path: root/config.toml.example
diff options
context:
space:
mode:
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]