AIencoder commited on
Commit
e56ad1e
·
verified ·
1 Parent(s): adbd890

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -482,11 +482,11 @@ def create_ui():
482
  """)
483
 
484
  # Status bar
485
- status_emoji = "🟢" if cached else "🟡"
486
  gr.HTML(f"""
487
  <div class="status-bar" style="background: linear-gradient(135deg, #667eea22, #764ba222);">
488
  {status_emoji} <strong>{len(cached)}/{total_models}</strong> models cached •
489
- Models download on first use (~1-9GB each)
490
  </div>
491
  """)
492
 
 
482
  """)
483
 
484
  # Status bar
485
+ status_emoji = "🟢" if len(cached) >= total_models else "🟡"
486
  gr.HTML(f"""
487
  <div class="status-bar" style="background: linear-gradient(135deg, #667eea22, #764ba222);">
488
  {status_emoji} <strong>{len(cached)}/{total_models}</strong> models cached •
489
+ {"All models ready!" if len(cached) >= total_models else "Models download on first use (~1-9GB each)"}
490
  </div>
491
  """)
492