"src/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "b6d28c9d9b5701e63b52471a28423ee3eaf2136d"
Commit 568ce38f authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

endpoint address updated

parent c4413a7a
...@@ -3,7 +3,7 @@ ...@@ -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",
......
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';
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: {
......
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