forked from phoenix/litellm-mirror
fix(anthropic.py): bug fix
This commit is contained in:
parent
e892fc99a3
commit
d620b4dc5d
2 changed files with 3 additions and 3 deletions
|
@ -480,12 +480,12 @@ class ModelResponse(OpenAIObject):
|
|||
object=None,
|
||||
system_fingerprint=None,
|
||||
usage=None,
|
||||
stream=False,
|
||||
stream=None,
|
||||
response_ms=None,
|
||||
hidden_params=None,
|
||||
**params,
|
||||
):
|
||||
if stream:
|
||||
if stream is not None and stream == True:
|
||||
object = "chat.completion.chunk"
|
||||
choices = [StreamingChoices()]
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue