open-webui/src/lib/constants.ts

8 lines
196 B
TypeScript
Raw Normal View History

2023-10-09 06:38:42 +08:00
import { browser, dev } from '$app/environment';
2023-10-22 04:43:56 +08:00
export const API_ENDPOINT = browser
? `https://localhost/api`
2023-10-19 12:47:28 +08:00
: dev
2023-10-22 04:43:56 +08:00
? `http://localhost:11434/api`
: 'http://host.docker.internal:11434/api';