Files
open-webui/src/lib/contants.ts
Timothy J. Baek 5e03670f1e chat feature added
2023-10-08 15:38:42 -07:00

8 lines
185 B
TypeScript

import { browser, dev } from '$app/environment';
export const ENDPOINT = dev
? 'http://127.0.0.1:11434'
: browser
? 'http://127.0.0.1:11434'
: 'http://host.docker.internal:11434';