Use qwen3:latest as default model to avoid tag ambiguity

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-25 22:31:35 -05:00
parent f45b7cf9c5
commit 8ee3649531
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -361,7 +361,7 @@ async function handleRestoreFile(event: Event) {
<div class="field">
<label for="default-model">Chat Model</label>
<select id="default-model" v-model="defaultModel" class="input">
<option value="">Default ({{ defaultChatModel || "qwen3" }})</option>
<option value="">Default ({{ defaultChatModel || "qwen3:latest" }})</option>
<option v-for="m in installedModels" :key="m" :value="m">{{ m }}</option>
</select>
<p class="field-hint">Model used for new conversations.</p>