+10
−4
Loading
The progress bar was only updating description but not advancing the progress bar percentage. It also wasn't showing how many documents had been processed or remaining. Fixed by: 1. Adding processed_count = [0] to track documents processed 2. Incrementing count in progress_callback after each document completes 3. Using advance=1 parameter to update progress bar incrementally 4. Updating description to show 'X/Y processed' and 'N remaining' format 5. Removing final progress.update() call since we update incrementally Now progress bar shows: - Processed count (e.g., '3/10') - Current document being processed - Number of remaining documents - Pipeline stage - Visual progress bar that advances with each document Matches style of 'ai workspace list-members' table output.