summaryrefslogtreecommitdiff
path: root/config.json.example
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-08-17 08:43:53 +0300
committerPaul Buetow <paul@buetow.org>2025-08-17 08:43:53 +0300
commit07d02d93dbb7a8167758f678c68b5a1a520167c8 (patch)
treeffa0698323175c2c5fa591420f2c33d1bcb9e069 /config.json.example
parentd44ae13e97eff75704b0fbd90814811dcc98eff5 (diff)
llm: add GitHub Copilot provider
- Implement copilot client reading COPILOT_API_KEY - Wire copilot_base_url and copilot_model config - Update README and config example; defaults to gpt-4.1 - Keep OpenAI default at gpt-4.1 for consistency
Diffstat (limited to 'config.json.example')
-rw-r--r--config.json.example5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.json.example b/config.json.example
index ca97076..359e862 100644
--- a/config.json.example
+++ b/config.json.example
@@ -13,5 +13,8 @@
"openai_base_url": "https://api.openai.com/v1",
"ollama_model": "qwen2.5-coder:latest",
- "ollama_base_url": "http://localhost:11434"
+ "ollama_base_url": "http://localhost:11434",
+
+ "copilot_model": "gpt-4.1",
+ "copilot_base_url": "https://api.githubcopilot.com"
}