Skip to content

Commit e0c6b46

Browse files
committed
Fixing typecheck error: Asyncresponse does not have seed argument
1 parent 6f09779 commit e0c6b46

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/agents/models/openai_responses.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,7 @@ async def _fetch_response(
246246
stream=stream,
247247
extra_headers=_HEADERS,
248248
text=response_format,
249-
store=self._non_null_or_not_given(model_settings.store),
250-
seed=self._non_null_or_not_given(model_settings.seed),
251-
)
249+
store=self._non_null_or_not_given(model_settings.store))
252250

253251
def _get_client(self) -> AsyncOpenAI:
254252
if self._client is None:

0 commit comments

Comments
 (0)