"docs_zh-CN/vscode:/vscode.git/clone" did not exist on "d94042db9c37d23329e5f6ba3c2e2c096d862be5"
Commit 36b3ec94 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

endpoint error fixed

parent 5d07c363
...@@ -20,6 +20,6 @@ export const load: PageServerLoad = async ({ url }) => { ...@@ -20,6 +20,6 @@ export const load: PageServerLoad = async ({ url }) => {
return { return {
models: models?.models ?? [], models: models?.models ?? [],
ENDPOINT: ENDPOINT OLLAMA_ENDPOINT: process.env.OLLAMA_ENDPOINT
}; };
}; };
...@@ -11,9 +11,12 @@ ...@@ -11,9 +11,12 @@
import { onMount, tick } from 'svelte'; import { onMount, tick } from 'svelte';
import { openDB, deleteDB } from 'idb'; import { openDB, deleteDB } from 'idb';
import { ENDPOINT as SERVER_ENDPOINT } from '$lib/contants';
export let data: PageData; export let data: PageData;
$: ({ models, ENDPOINT } = data); $: ({ models, OLLAMA_ENDPOINT } = data);
const ENDPOINT = OLLAMA_ENDPOINT ? OLLAMA_ENDPOINT : SERVER_ENDPOINT;
let textareaElement; let textareaElement;
let db; let db;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment