open-webui/src/lib/contants.ts

8 lines
196 B
TypeScript
Raw Normal View History

2023-10-09 00:38:42 +02:00
import { browser, dev } from '$app/environment';
2023-10-09 03:32:54 +02:00
export const ENDPOINT = browser
? `http://${location.hostname}:11434`
: dev
2023-10-09 00:38:42 +02:00
? 'http://127.0.0.1:11434'
: 'http://host.docker.internal:11434';