From e7fd79c461de3c20020ce56d00590e6367602c10 Mon Sep 17 00:00:00 2001 From: alpha-nerd-nomyo Date: Wed, 3 Sep 2025 18:00:20 +0200 Subject: [PATCH] Update config.yaml centralizing remote endpoint secrets --- config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/config.yaml b/config.yaml index f36a1fb..94162b1 100644 --- a/config.yaml +++ b/config.yaml @@ -3,6 +3,15 @@ endpoints: - http://192.168.0.50:11434 - http://192.168.0.51:11434 - http://192.168.0.52:11434 + - https://openrouter.ai/api/v1 + - https://api.openai.com/v1 # Maximum concurrent connections *per endpoint‑model pair* (equals to OLLAMA_NUM_PARALLEL) max_concurrent_connections: 2 + +# API keys for remote endpoints +# Set an environment variable like OPENAI_KEY +# Confirm endpoints are exactly as in endpoints block +api_keys: + "https://openrouter.ai/api/v1": "${OPENROUTER_KEY}" + "https://api.openai.com/v1": "${OPENAI_KEY}"