We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would be a simple way to integrate with UIs to show progress while executing a task, without getting into logging.
team = Swarm([agent1, agent2]) stream = await team.run_stream("What is bob's birthday?", termination_condition=MaxMessageTermination(3)) async for message in stream: print(message)
Logging is too complicated for a quick start. Stream iterator is much more user friendly.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What feature would you like to be added?
Would be a simple way to integrate with UIs to show progress while executing a task, without getting into logging.
Why is this needed?
Logging is too complicated for a quick start. Stream iterator is much more user friendly.
The text was updated successfully, but these errors were encountered: