mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 05:24:02 +00:00
endpoint address updated
This commit is contained in:
parent
c4413a7afa
commit
568ce38fa1
@ -3,7 +3,7 @@
|
|||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev --host",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||||
@ -36,4 +36,4 @@
|
|||||||
"marked": "^9.1.0",
|
"marked": "^9.1.0",
|
||||||
"svelte-french-toast": "^1.2.0"
|
"svelte-french-toast": "^1.2.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
import { browser, dev } from '$app/environment';
|
import { browser, dev } from '$app/environment';
|
||||||
|
|
||||||
export const ENDPOINT = dev
|
export const ENDPOINT = browser
|
||||||
? 'http://127.0.0.1:11434'
|
? `http://${location.hostname}:11434`
|
||||||
: browser
|
: dev
|
||||||
? 'http://127.0.0.1:11434'
|
? 'http://127.0.0.1:11434'
|
||||||
: 'http://host.docker.internal:11434';
|
: 'http://host.docker.internal:11434';
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { ENDPOINT } from '$lib/contants';
|
import { ENDPOINT } from '$lib/contants';
|
||||||
import type { PageServerLoad } from './$types';
|
import type { PageServerLoad } from './$types';
|
||||||
|
|
||||||
export const load: PageServerLoad = async ({ url, fetch }) => {
|
export const load: PageServerLoad = async ({ url }) => {
|
||||||
const models = await fetch(`${ENDPOINT}/api/tags`, {
|
const models = await fetch(`${ENDPOINT}/api/tags`, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
headers: {
|
headers: {
|
||||||
|
Loading…
Reference in New Issue
Block a user