"...composable_kernel_rocm.git" did not exist on "a6392538e2b5c8dea3a4b433a1bcee9809f35d90"
Commit ecb4d1b8 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

endpoint error fix

parent c5e36c8d
import { browser, dev } from '$app/environment';
export const ENDPOINT =
process.env.OLLAMA_ENDPOINT != undefined
? process.env.OLLAMA_ENDPOINT
: browser
? `http://${location.hostname}:11434`
: dev
? 'http://127.0.0.1:11434'
: 'http://host.docker.internal:11434';
export const ENDPOINT = browser
? `http://${location.hostname}:11434`
: dev
? 'http://127.0.0.1:11434'
: 'http://host.docker.internal:11434';
......@@ -2,13 +2,18 @@ import { ENDPOINT } from '$lib/contants';
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ url }) => {
const models = await fetch(`${ENDPOINT}/api/tags`, {
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json'
const OLLAMA_ENDPOINT = process.env.OLLAMA_ENDPOINT;
console.log(OLLAMA_ENDPOINT);
const models = await fetch(
`${OLLAMA_ENDPOINT != undefined ? OLLAMA_ENDPOINT : ENDPOINT}/api/tags`,
{
method: 'GET',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json'
}
}
})
)
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
......
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