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