2023-10-21 23:14:12 +00:00
|
|
|
import { browser } from '$app/environment';
|
2023-10-22 06:38:12 +00:00
|
|
|
import { PUBLIC_API_BASE_URL } from '$env/static/public';
|
2023-10-08 22:38:42 +00:00
|
|
|
|
2023-10-22 06:38:12 +00:00
|
|
|
export const API_BASE_URL =
|
|
|
|
PUBLIC_API_BASE_URL === ''
|
2023-10-21 23:14:12 +00:00
|
|
|
? browser
|
|
|
|
? `http://${location.hostname}:11434/api`
|
|
|
|
: `http://localhost:11434/api`
|
2023-10-22 06:38:12 +00:00
|
|
|
: PUBLIC_API_BASE_URL;
|
2023-10-21 23:14:12 +00:00
|
|
|
|
2023-11-17 21:17:30 +00:00
|
|
|
export const WEB_UI_VERSION = 'v1.0.0-alpha.8';
|
2023-11-08 07:51:56 +00:00
|
|
|
|
2023-10-21 23:14:12 +00:00
|
|
|
// Source: https://kit.svelte.dev/docs/modules#$env-static-public
|
|
|
|
// This feature, akin to $env/static/private, exclusively incorporates environment variables
|
|
|
|
// that are prefixed with config.kit.env.publicPrefix (usually set to PUBLIC_).
|
|
|
|
// Consequently, these variables can be securely exposed to client-side code.
|
|
|
|
|
|
|
|
// Example of the .env configuration:
|
2023-10-22 06:38:12 +00:00
|
|
|
// OLLAMA_API_BASE_URL="http://localhost:11434/api"
|
2023-10-21 23:14:12 +00:00
|
|
|
// # Public
|
2023-10-22 06:38:12 +00:00
|
|
|
// PUBLIC_API_BASE_URL=$OLLAMA_API_BASE_URL
|