From 96995cd37f607019a112a6809bf70bd9c7fb9da7 Mon Sep 17 00:00:00 2001 From: alpha-nerd-nomyo Date: Wed, 17 Sep 2025 11:43:12 +0200 Subject: [PATCH] Create config.yaml --- config.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config.yaml diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..bb8e8f5 --- /dev/null +++ b/config.yaml @@ -0,0 +1,18 @@ +# config.yaml +endpoints: + - http://192.168.0.50:11434 + - http://192.168.0.51:11434 + - http://192.168.0.52:11434 + - 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: + "http://192.168.0.50:11434": "ollama" + "http://192.168.0.51:11434": "ollama" + "http://192.168.0.52:11434": "ollama" + "https://api.openai.com/v1": "${OPENAI_KEY}"