mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-10 14:55:16 -05:00
## Summary - Add asymptotic progress bar that appears during long-running chat tasks - Progress bar shows after 10 seconds with "Working on it..." label and percentage - Uses half-life formula: ~50% at 30s, ~75% at 60s, ~87.5% at 90s, etc. - Creates the classic "game loading bar" effect that never reaches 100% https://github.com/user-attachments/assets/3c59289e-793c-4a08-b3fc-69e1eef28b1f ## Test plan - [x] Start a chat that triggers agent generation - [x] Wait 10+ seconds for the progress bar to appear - [x] Verify progress bar is centered with label and percentage - [x] Verify progress follows expected timing (~50% at 30s) - [x] Verify progress bar disappears when task completes --------- Co-authored-by: Otto <otto@agpt.co>
25 lines
345 B
Plaintext
25 lines
345 B
Plaintext
.env
|
|
database.db
|
|
database.db-journal
|
|
dev.db
|
|
dev.db-journal
|
|
build/
|
|
config.json
|
|
secrets/*
|
|
!secrets/.gitkeep
|
|
|
|
*.ignore.*
|
|
*.ign.*
|
|
|
|
# Load test results and reports
|
|
load-tests/*_RESULTS.md
|
|
load-tests/*_REPORT.md
|
|
load-tests/results/
|
|
load-tests/*.json
|
|
load-tests/*.log
|
|
load-tests/node_modules/*
|
|
migrations/*/rollback*.sql
|
|
|
|
# Workspace files
|
|
workspaces/
|