1717from tests .integrations .openai_agents .streaming_agent import streaming_agent
1818from tests .integrations .openai_agents .research_agent import research_agent
1919from tests .integrations .openai_agents .remote_agent import remote_agent
20+ from tests .integrations .openai_agents .thread_agent import thread_agent
2021from tests .integrations .openai_agents .git_mcp_agent import git_agent
2122
2223add_trace_processor (DeepEvalTracingProcessor ())
2829
2930 asyncio .run (git_agent ())
3031 # asyncio.run(customer_service_agent())
31- # asyncio.run(research_agent())
32- # asyncio.run(code_interpreter_agent())
33- # asyncio.run(remote_agent())
34- # asyncio.run(streaming_agent())
35- # asyncio.run(streaming_guardrails_agent())
36- # asyncio.run(output_guardrails_agent())
32+ asyncio .run (research_agent ())
33+ asyncio .run (code_interpreter_agent ())
34+ asyncio .run (remote_agent ())
35+ asyncio .run (streaming_agent ())
36+ asyncio .run (streaming_guardrails_agent ())
37+ asyncio .run (output_guardrails_agent ())
38+ asyncio .run (thread_agent ())
3739
3840 ##########################################
3941 # Test Async
@@ -51,4 +53,5 @@ async def gather_research_agents():
5153 async def gather_streaming_agents ():
5254 tasks = [streaming_agent () for _ in range (4 )]
5355 await asyncio .gather (* tasks )
54- # asyncio.run(gather_streaming_agents())
56+ # asyncio.run(gather_streaming_agents())
57+
0 commit comments