Improve model status indicators and tune timeouts

Green/red emoji circles replace Unicode symbols for at-a-glance model
readiness. Increase connect timeouts (10→30s) for cold model loading,
warm timeout (120→300s) for large models, and pull timeout (600→1800s)
to match route-level limit. Show error toast on SSE reconnection failure
instead of silently recovering.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-14 23:01:59 -05:00
parent 953eaf2feb
commit f089b16080
5 changed files with 13 additions and 7 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ onMounted(async () => {
:key="m.name"
:value="m.name"
>
{{ isHot(m.name) ? "\u2B24 " : "\u25CB " }}{{ m.name }}
{{ isHot(m.name) ? "🟢 " : "🔴 " }}{{ m.name }}
</option>
</select>
</template>