From c5e36c8d11b249dd31d78dd130ffb124edeaf1b1 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Wed, 18 Oct 2023 08:39:38 -0700 Subject: [PATCH] Update contants.ts --- src/lib/contants.ts | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/lib/contants.ts b/src/lib/contants.ts index d76fce8a..06044f7b 100644 --- a/src/lib/contants.ts +++ b/src/lib/contants.ts @@ -1,7 +1,10 @@ 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';