open-webui/src/lib/constants.ts

100 lines
2.0 KiB
TypeScript
Raw Normal View History

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-01-05 02:38:03 +00:00
2024-06-04 06:39:52 +00:00
export const WEBUI_HOSTNAME = browser ? (dev ? `${location.hostname}:8080` : ``) : '';
export const WEBUI_BASE_URL = browser ? (dev ? `http://${WEBUI_HOSTNAME}` : ``) : ``;
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 OLLAMA_API_BASE_URL = `${WEBUI_BASE_URL}/ollama`;
2024-05-24 08:40:48 +00:00
export const OPENAI_API_BASE_URL = `${WEBUI_BASE_URL}/openai`;
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;
2024-05-26 07:49:30 +00:00
export const WEBUI_BUILD_HASH = APP_BUILD_HASH;
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',
'text/csv',
'text/xml',
'text/html',
'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
];
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',
'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',
2024-06-08 04:19:46 +00:00
'ppt',
'msg'
];
// 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.