diff --git a/tests/structs/test_agent_stream_token.py b/tests/structs/test_agent_stream_token.py new file mode 100644 index 00000000..5cd02207 --- /dev/null +++ b/tests/structs/test_agent_stream_token.py @@ -0,0 +1,9 @@ +from swarms.structs.agent import Agent + +agent = Agent( + model_name="gpt-4.1", + max_loops=1, + stream=True, +) + +agent.run("Tell me a short story about a robot learning to paint.")