From 07d02d93dbb7a8167758f678c68b5a1a520167c8 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sun, 17 Aug 2025 08:43:53 +0300 Subject: 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 --- config.json.example | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'config.json.example') 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" } -- cgit v1.2.3