forked from phoenix/litellm-mirror
fix(proxy_server.py): fix if block
This commit is contained in:
parent
3fea348e4e
commit
7d26eaf481
1 changed files with 1 additions and 2 deletions
|
@ -941,8 +941,7 @@ async def _PROXY_track_cost_callback(
|
|||
raise Exception("User API key missing from custom callback.")
|
||||
else:
|
||||
if kwargs["stream"] != True or (
|
||||
kwargs["stream"] == True
|
||||
and kwargs.get("complete_streaming_response") in kwargs
|
||||
kwargs["stream"] == True and "complete_streaming_response" in kwargs
|
||||
):
|
||||
raise Exception(
|
||||
f"Model not in litellm model cost map. Add custom pricing - https://docs.litellm.ai/docs/proxy/custom_pricing"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue