From 709dcd888216b5b659a80f432dbbc99e9ead9c35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 14 Nov 2025 02:17:40 +0100 Subject: [PATCH] fix: use correct NO_DOCS and NO_REDOC environment variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Replace DISABLE_SWAGGER_UI with NO_DOCS and NO_REDOC - Following official LiteLLM documentation for disabling API docs - Disables both Swagger UI and Redoc documentation interfaces 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ai/compose.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ai/compose.yaml b/ai/compose.yaml index 512bb00..4509061 100644 --- a/ai/compose.yaml +++ b/ai/compose.yaml @@ -99,7 +99,8 @@ services: LITELLM_MASTER_KEY: ${AI_LITELLM_API_KEY} DATABASE_URL: postgresql://${AI_DB_USER}:${AI_DB_PASSWORD}@ai_postgres:5432/litellm LITELLM_DROP_PARAMS: 'true' - DISABLE_SWAGGER_UI: 'true' + NO_DOCS: 'true' + NO_REDOC: 'true' volumes: - ./litellm-config.yaml:/app/litellm-config.yaml:ro command: