From a938ab30235b2f5cc48b3dafcf3dbb8bb754c5ff Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 12 Nov 2023 12:24:13 -0800 Subject: [PATCH 1/2] fix: model select option text styling --- src/routes/+page.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 7763ce726..65d2a990d 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1145,13 +1145,13 @@ bind:value={selectedModel} disabled={messages.length != 0} > - + {#each models as model} {#if model.name === 'hr'}
{:else} - + {/if} {/each} From 62a5772bc63386418d6ac0e44241fffce43bea2b Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 12 Nov 2023 12:25:46 -0800 Subject: [PATCH 2/2] chore: version update --- src/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 47ebba05c..54894facd 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -8,7 +8,7 @@ export const API_BASE_URL = : `http://localhost:11434/api` : PUBLIC_API_BASE_URL; -export const WEB_UI_VERSION = 'v1.0.0-alpha.3'; +export const WEB_UI_VERSION = 'v1.0.0-alpha.5'; // Source: https://kit.svelte.dev/docs/modules#$env-static-public // This feature, akin to $env/static/private, exclusively incorporates environment variables