From f1ff42f452ffb535e88689fb17bd707876033d10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 14 Nov 2025 02:14:43 +0100 Subject: [PATCH] feat: disable Swagger UI in LiteLLM proxy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add --disable_swagger flag to LiteLLM command - Improves security by hiding API documentation interface 🤖 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 47de138..25012dd 100644 --- a/ai/compose.yaml +++ b/ai/compose.yaml @@ -110,7 +110,8 @@ services: '--port', '4000', '--detailed_debug', - '--drop_params' + '--drop_params', + '--disable_swagger' ] depends_on: - ai_postgres