Spaces:
Sleeping
Sleeping
Remove AOT indication from UI duration estimate
Browse files
app.py
CHANGED
|
@@ -596,7 +596,6 @@ def update_duration_estimate(model_name, enable_search, max_results, max_chars,
|
|
| 596 |
|
| 597 |
return f"⏱️ **Estimated GPU Time: {duration:.1f} seconds**\n\n" \
|
| 598 |
f"📊 **Model Size:** {model_size:.1f}B parameters\n" \
|
| 599 |
-
f"⚡ **AOT Compilation:** {'Enabled' if use_aot else 'Disabled'}\n" \
|
| 600 |
f"🔍 **Web Search:** {'Enabled' if enable_search else 'Disabled'}"
|
| 601 |
except Exception as e:
|
| 602 |
return f"⚠️ Error calculating estimate: {e}"
|
|
|
|
| 596 |
|
| 597 |
return f"⏱️ **Estimated GPU Time: {duration:.1f} seconds**\n\n" \
|
| 598 |
f"📊 **Model Size:** {model_size:.1f}B parameters\n" \
|
|
|
|
| 599 |
f"🔍 **Web Search:** {'Enabled' if enable_search else 'Disabled'}"
|
| 600 |
except Exception as e:
|
| 601 |
return f"⚠️ Error calculating estimate: {e}"
|