forked from open-webui/open-webui
commit
89399f1a3c
2 changed files with 16 additions and 14 deletions
|
@ -1,9 +1,6 @@
|
||||||
import { browser, dev } from '$app/environment';
|
import { browser, dev } from '$app/environment';
|
||||||
|
|
||||||
export const ENDPOINT =
|
export const ENDPOINT = browser
|
||||||
process.env.OLLAMA_ENDPOINT != undefined
|
|
||||||
? process.env.OLLAMA_ENDPOINT
|
|
||||||
: browser
|
|
||||||
? `http://${location.hostname}:11434`
|
? `http://${location.hostname}:11434`
|
||||||
: dev
|
: dev
|
||||||
? 'http://127.0.0.1:11434'
|
? 'http://127.0.0.1:11434'
|
||||||
|
|
|
@ -2,13 +2,18 @@ import { ENDPOINT } from '$lib/contants';
|
||||||
import type { PageServerLoad } from './$types';
|
import type { PageServerLoad } from './$types';
|
||||||
|
|
||||||
export const load: PageServerLoad = async ({ url }) => {
|
export const load: PageServerLoad = async ({ url }) => {
|
||||||
const models = await fetch(`${ENDPOINT}/api/tags`, {
|
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',
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
Accept: 'application/json',
|
Accept: 'application/json',
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
)
|
||||||
.then(async (res) => {
|
.then(async (res) => {
|
||||||
if (!res.ok) throw await res.json();
|
if (!res.ok) throw await res.json();
|
||||||
return res.json();
|
return res.json();
|
||||||
|
|
Loading…
Reference in a new issue