mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
fix(cli): clarify pi compatibility suppression
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
0cb773c2d7
commit
31fe5e4537
1 changed files with 4 additions and 1 deletions
|
|
@ -194,7 +194,10 @@ 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}, # mutable-ok: JSON field
|
||||
"compat": { # mutable-ok: JSON serialization requires a nested mutable object
|
||||
"supportsStore": False,
|
||||
"supportsLongCacheRetention": False,
|
||||
},
|
||||
"apiKey": f"${LITELLM_PROXY_API_KEY_ENV}",
|
||||
"models": [_model_entry(model_id, limits) for model_id in model_ids], # mutable-ok: JSON array
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue