From 0cb773c2d75f45617b08246a3dc7dbc2a1b95cca Mon Sep 17 00:00:00 2001 From: jesus Date: Fri, 11 Sep 2026 15:38:22 +0000 Subject: [PATCH] fix(cli): annotate pi compatibility field Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/proxy/client/cli/commands/pi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/client/cli/commands/pi.py b/litellm/proxy/client/cli/commands/pi.py index 17b4a75488b..7b02da1e9de 100644 --- a/litellm/proxy/client/cli/commands/pi.py +++ b/litellm/proxy/client/cli/commands/pi.py @@ -194,7 +194,7 @@ def provider_block( return { # mutable-ok: JSON serialization requires a mutable object "baseUrl": base_url.rstrip("/") + "/v1", "api": "openai-completions", - "compat": {"supportsStore": False, "supportsLongCacheRetention": False}, + "compat": {"supportsStore": False, "supportsLongCacheRetention": False}, # mutable-ok: JSON field "apiKey": f"${LITELLM_PROXY_API_KEY_ENV}", "models": [_model_entry(model_id, limits) for model_id in model_ids], # mutable-ok: JSON array }