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 bcf97fa commit fd8f26aCopy full SHA for fd8f26a
tests/openai_agents/basic/test_hello_world_workflow.py
@@ -12,7 +12,7 @@
12
from openai_agents.basic.workflows.hello_world_workflow import HelloWorldAgent
13
14
15
-def haiku_test_model():
+def hello_world_test_model():
16
return TestModel.returning_responses(
17
[ResponseBuilders.output_message("This is a haiku (not really)")]
18
)
@@ -21,7 +21,7 @@ def haiku_test_model():
21
async def test_execute_workflow(client: Client):
22
task_queue_name = str(uuid.uuid4())
23
24
- async with AgentEnvironment(model=haiku_test_model()) as agent_env:
+ async with AgentEnvironment(model=hello_world_test_model()) as agent_env:
25
client = agent_env.applied_on_client(client)
26
async with Worker(
27
client,
0 commit comments