We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2511659 commit ee820fcCopy full SHA for ee820fc
src/agents/extensions/models/litellm_model.py
@@ -111,9 +111,9 @@ async def get_response(
111
)
112
113
message: litellm.types.utils.Message | None = None
114
- first_choice: litellm.types.utils.Choices | litellm.types.utils.StreamingChoices | None = (
115
- None
116
- )
+ first_choice: (
+ litellm.types.utils.Choices | litellm.types.utils.StreamingChoices | None
+ ) = None
117
if response.choices and len(response.choices) > 0:
118
first_choice = response.choices[0]
119
assert isinstance(first_choice, litellm.types.utils.Choices)
0 commit comments