2024-05-10 12:31:17 +00:00
|
|
|
import { browser, dev } from '$app/environment';
|
2024-02-22 02:12:01 +00:00
|
|
|
// import { version } from '../../package.json';
|
2023-10-08 22:38:42 +00:00
|
|
|
|
2024-02-24 01:12:19 +00:00
|
|
|
export const APP_NAME = 'Open WebUI';
|
2024-05-10 12:31:17 +00:00
|
|
|
export const WEBUI_BASE_URL = browser ? (dev ? `http://${location.hostname}:8080` : ``) : ``;
|
2024-01-05 02:38:03 +00:00
|
|
|
|
2023-12-23 23:38:52 +00:00
|
|
|
export const WEBUI_API_BASE_URL = `${WEBUI_BASE_URL}/api/v1`;
|
2024-02-22 12:12:26 +00:00
|
|
|
|
|
|
|
export const LITELLM_API_BASE_URL = `${WEBUI_BASE_URL}/litellm/api`;
|
2024-03-04 03:55:32 +00:00
|
|
|
export const OLLAMA_API_BASE_URL = `${WEBUI_BASE_URL}/ollama`;
|
2024-01-05 02:38:03 +00:00
|
|
|
export const OPENAI_API_BASE_URL = `${WEBUI_BASE_URL}/openai/api`;
|
2024-02-11 08:17:50 +00:00
|
|
|
export const AUDIO_API_BASE_URL = `${WEBUI_BASE_URL}/audio/api/v1`;
|
2024-02-22 02:12:01 +00:00
|
|
|
export const IMAGES_API_BASE_URL = `${WEBUI_BASE_URL}/images/api/v1`;
|
|
|
|
export const RAG_API_BASE_URL = `${WEBUI_BASE_URL}/rag/api/v1`;
|
2023-11-19 00:47:12 +00:00
|
|
|
|
2024-02-24 01:12:19 +00:00
|
|
|
export const WEBUI_VERSION = APP_VERSION;
|
2023-12-26 20:50:52 +00:00
|
|
|
export const REQUIRED_OLLAMA_VERSION = '0.1.16';
|
|
|
|
|
2024-01-08 07:43:32 +00:00
|
|
|
export const SUPPORTED_FILE_TYPE = [
|
2024-01-13 13:46:56 +00:00
|
|
|
'application/epub+zip',
|
2024-01-08 07:43:32 +00:00
|
|
|
'application/pdf',
|
|
|
|
'text/plain',
|
2024-01-17 23:28:52 +00:00
|
|
|
'text/csv',
|
|
|
|
'text/xml',
|
2024-03-25 10:21:34 +00:00
|
|
|
'text/html',
|
2024-01-17 23:28:52 +00:00
|
|
|
'text/x-python',
|
|
|
|
'text/css',
|
|
|
|
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
|
|
|
|
'application/octet-stream',
|
|
|
|
'application/x-javascript',
|
2024-02-11 09:06:25 +00:00
|
|
|
'text/markdown',
|
|
|
|
'audio/mpeg',
|
|
|
|
'audio/wav'
|
2024-01-08 07:43:32 +00:00
|
|
|
];
|
|
|
|
|
2024-01-23 07:00:07 +00:00
|
|
|
export const SUPPORTED_FILE_EXTENSIONS = [
|
2024-02-10 03:14:26 +00:00
|
|
|
'md',
|
|
|
|
'rst',
|
|
|
|
'go',
|
|
|
|
'py',
|
|
|
|
'java',
|
|
|
|
'sh',
|
|
|
|
'bat',
|
|
|
|
'ps1',
|
|
|
|
'cmd',
|
|
|
|
'js',
|
|
|
|
'ts',
|
|
|
|
'css',
|
|
|
|
'cpp',
|
|
|
|
'hpp',
|
|
|
|
'h',
|
|
|
|
'c',
|
|
|
|
'cs',
|
2024-03-25 10:21:34 +00:00
|
|
|
'htm',
|
|
|
|
'html',
|
2024-02-10 03:14:26 +00:00
|
|
|
'sql',
|
|
|
|
'log',
|
|
|
|
'ini',
|
|
|
|
'pl',
|
|
|
|
'pm',
|
|
|
|
'r',
|
|
|
|
'dart',
|
|
|
|
'dockerfile',
|
|
|
|
'env',
|
|
|
|
'php',
|
|
|
|
'hs',
|
|
|
|
'hsc',
|
|
|
|
'lua',
|
|
|
|
'nginxconf',
|
|
|
|
'conf',
|
|
|
|
'm',
|
|
|
|
'mm',
|
|
|
|
'plsql',
|
|
|
|
'perl',
|
|
|
|
'rb',
|
|
|
|
'rs',
|
|
|
|
'db2',
|
|
|
|
'scala',
|
|
|
|
'bash',
|
|
|
|
'swift',
|
|
|
|
'vue',
|
|
|
|
'svelte',
|
|
|
|
'doc',
|
|
|
|
'docx',
|
|
|
|
'pdf',
|
|
|
|
'csv',
|
|
|
|
'txt',
|
|
|
|
'xls',
|
2024-05-20 14:22:43 +00:00
|
|
|
'xlsx',
|
|
|
|
'pptx',
|
|
|
|
'ppt'
|
2024-01-23 07:00:07 +00:00
|
|
|
];
|
2024-01-23 06:18:12 +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.
|