From ce81f1c999a7864913d67a773b6f7d04b0415a6a Mon Sep 17 00:00:00 2001 From: southseact-3d Date: Wed, 18 Feb 2026 16:24:23 +0000 Subject: [PATCH] feat: Add KILO_API_KEY to Docker configuration Add Kilo Gateway API key support to Docker deployment: - Add KILO_API_KEY environment variable to docker-compose.yml - Add KILO_API_KEY to .env.example with documentation This ensures the Kilo Gateway API key is properly passed through to the Docker container when configured. --- .env.example | 3 +++ docker-compose.yml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.env.example b/.env.example index 9e11927..f7a3f4b 100644 --- a/.env.example +++ b/.env.example @@ -35,6 +35,9 @@ ROUTEWAY_API_KEY= # G4F (works without key for free tier) G4F_API_KEY= +# Kilo Gateway - Universal AI Inference API (https://kilo.ai) +KILO_API_KEY= + # Bytez BYTEZ_API_KEY= diff --git a/docker-compose.yml b/docker-compose.yml index e5d3be0..0046ce2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -118,6 +118,8 @@ services: - ROUTEWAY_API_KEY=${ROUTEWAY_API_KEY:-} # G4F - G4F_API_KEY=${G4F_API_KEY:-} + # Kilo Gateway + - KILO_API_KEY=${KILO_API_KEY:-} # Bytez - BYTEZ_API_KEY=${BYTEZ_API_KEY:-} # Ollama