Prod 1970 streaming progress#701
Merged
ahmetgunduz merged 12 commits intodevelopmentfrom Oct 23, 2025
Merged
Conversation
- Add show_progress parameter to Agent.run() and TeamAgent.run() - Override sync_poll() methods to display real-time progress updates - Progress displays stage, tool, runtime, success status, and reason - Progress overwrites current line using sys.stdout for clean display - Add progress bar for team agents showing current_step/total_steps - Add missing docstrings to fix linter errors in TeamAgent class - Fix TypeError in issubclass() by adding inspect.isclass() checks - Remove unused agent_progress_display.py utility file Progress format: - Single agent: 🤖 Agent: [Stage] | Tool: [name] [status] (time) | [reason] - Team agent: 👥 Team: [progress bar] step/total | [agent] | [Stage] | [tool] [status] | [reason]
- Remove truncation of reason field - show full text - Add tool_input and tool_output fields to progress display - Remove agent name truncation in team agent progress - Remove flush/clear at the end - don't clear progress line - Change from sys.stdout.write to print for simpler output - Remove unused sys and os imports Progress now shows: - Single agent: 🤖 Agent: [Stage] | Tool: [name] [status] (time) | Reason: [full reason] | Input: [input] | Output: [output] - Team agent: 👥 Team: [progress bar] step/total | [full agent name] | [Stage] | [tool] [status] | Reason: [full reason] | Input: [input] | Output: [output]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.