endpoint address updated

This commit is contained in:
Timothy J. Baek 2023-10-08 18:32:54 -07:00
parent c4413a7afa
commit 568ce38fa1
3 changed files with 6 additions and 6 deletions

View file

@ -3,7 +3,7 @@
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev",
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",

View file

@ -1,7 +1,7 @@
import { browser, dev } from '$app/environment';
export const ENDPOINT = dev
? 'http://127.0.0.1:11434'
: browser
export const ENDPOINT = browser
? `http://${location.hostname}:11434`
: dev
? 'http://127.0.0.1:11434'
: 'http://host.docker.internal:11434';

View file

@ -1,7 +1,7 @@
import { ENDPOINT } from '$lib/contants';
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`, {
method: 'GET',
headers: {