Browse Source

Merge pull request #567 from ollama-webui/wording

refac: model select option wording
Timothy Jaeryang Baek 1 year ago
parent
commit
6b3b4ced1c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/chat/SettingsModal.svelte

+ 1 - 1
src/lib/components/chat/SettingsModal.svelte

@@ -1701,7 +1701,7 @@
 											bind:value={titleAutoGenerateModel}
 											placeholder="Select a model"
 										>
-											<option value="" selected>Default</option>
+											<option value="" selected>Current Model</option>
 											{#each $models.filter((m) => m.size != null) as model}
 												<option value={model.name} class="bg-gray-100 dark:bg-gray-700"
 													>{model.name +