contants.ts 278 Bytes
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
import { browser, dev } from '$app/environment';

Timothy J. Baek's avatar
Timothy J. Baek committed
3
4
5
6
7
8
9
10
export const ENDPOINT =
	process.env.OLLAMA_ENDPOINT != undefined
		? process.env.OLLAMA_ENDPOINT
		: browser
		? `http://${location.hostname}:11434`
		: dev
		? 'http://127.0.0.1:11434'
		: 'http://host.docker.internal:11434';