From fd1d6c03cbc483c4526011985735a1215a0df134 Mon Sep 17 00:00:00 2001 From: Teknium Date: Sat, 21 Mar 2026 07:09:28 -0700 Subject: [PATCH] fix(cli): correct truncated AUXILIARY_WEB_EXTRACT_API_KEY env var name Cherry-picked from PR #2295 by @dlkakbs. The web_extract auxiliary client api_key env var was literally stored as 'AUXILI..._KEY' (dots in the source) instead of the full name. Users configuring an auxiliary web_extract model with an API key would have auth failures because the key was written to a non-existent var. --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 2058103d..50634f34 100755 --- a/cli.py +++ b/cli.py @@ -398,7 +398,7 @@ def load_cli_config() -> Dict[str, Any]: "provider": "AUXILIARY_WEB_EXTRACT_PROVIDER", "model": "AUXILIARY_WEB_EXTRACT_MODEL", "base_url": "AUXILIARY_WEB_EXTRACT_BASE_URL", - "api_key": "AUXILI..._KEY", + "api_key": "AUXILIARY_WEB_EXTRACT_API_KEY", }, "approval": { "provider": "AUXILIARY_APPROVAL_PROVIDER",