From ce6c60d8e0399ee45fed0e452984812cd3d06d40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 19:00:55 +0100 Subject: [PATCH] fix: disable responses ID security for Codex CLI compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added disable_responses_id_security setting to allow Codex CLI to access the /responses endpoint without 401 errors. This removes the encryption requirement on response IDs while maintaining API key authentication. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ai/litellm-config.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ai/litellm-config.yaml b/ai/litellm-config.yaml index 1e34f15..b05983e 100644 --- a/ai/litellm-config.yaml +++ b/ai/litellm-config.yaml @@ -27,3 +27,6 @@ model_list: litellm_settings: drop_params: true set_verbose: true + +general_settings: + disable_responses_id_security: true