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 fcb9e9f commit a4852abCopy full SHA for a4852ab
tests/contrib/openai_agents/test_openai.py
@@ -1,3 +1,4 @@
1
+import json
2
import os
3
import uuid
4
from dataclasses import dataclass
@@ -1780,9 +1781,8 @@ async def test_workflow_method_tools(client: Client):
1780
1781
await workflow_handle.result()
1782
1783
-async def test_response_serialization(client: Client):
1784
- import json
1785
-
+async def test_response_serialization():
+ # This should not be used in another test, or this test needs to change to use another unloaded type
1786
from openai.types.responses.response_output_item import ImageGenerationCall
1787
1788
data = json.loads(
0 commit comments