Timothy Jaeryang Baek 2 weeks ago
parent
commit
1c78594379
1 changed files with 7 additions and 1 deletions
  1. 7 1
      src/lib/components/chat/ModelSelector/Selector.svelte

+ 7 - 1
src/lib/components/chat/ModelSelector/Selector.svelte

@@ -286,9 +286,11 @@
 		}
 	};
 
-	onMount(async () => {
+	const setOllamaVersion = async () => {
 		ollamaVersion = await getOllamaVersion(localStorage.token).catch((error) => false);
+	};
 
+	onMount(async () => {
 		if (items) {
 			tags = items
 				.filter((item) => !(item.model?.info?.meta?.hidden ?? false))
@@ -300,6 +302,10 @@
 		}
 	});
 
+	$: if (show) {
+		setOllamaVersion();
+	}
+
 	const cancelModelPullHandler = async (model: string) => {
 		const { reader, abortController } = $MODEL_DOWNLOAD_POOL[model];
 		if (abortController) {