2024-02-23 17:12:19 -08:00
|
|
|
import { APP_NAME } from '$lib/constants';
|
2024-04-21 11:41:18 +01:00
|
|
|
import { type Writable, writable } from 'svelte/store';
|
2024-05-19 18:46:24 +08:00
|
|
|
import type { GlobalModelConfig, ModelConfig } from '$lib/apis';
|
2024-05-26 12:18:43 -07:00
|
|
|
import type { Banner } from '$lib/types';
|
2024-06-03 23:39:52 -07:00
|
|
|
import type { Socket } from 'socket.io-client';
|
2023-11-18 16:47:12 -08:00
|
|
|
|
2023-11-19 17:47:07 -08:00
|
|
|
// Backend
|
2024-02-23 17:12:19 -08:00
|
|
|
export const WEBUI_NAME = writable(APP_NAME);
|
2024-04-22 18:15:07 +01:00
|
|
|
export const config: Writable<Config | undefined> = writable(undefined);
|
|
|
|
|
export const user: Writable<SessionUser | undefined> = writable(undefined);
|
2023-11-19 17:47:07 -08:00
|
|
|
|
|
|
|
|
// Frontend
|
2024-03-24 23:03:26 -07:00
|
|
|
export const MODEL_DOWNLOAD_POOL = writable({});
|
2024-01-02 20:41:37 -08:00
|
|
|
|
2024-05-14 12:26:53 -10:00
|
|
|
export const mobile = writable(false);
|
|
|
|
|
|
2024-06-03 23:39:52 -07:00
|
|
|
export const socket: Writable<null | Socket> = writable(null);
|
2024-06-04 01:10:31 -07:00
|
|
|
export const activeUserCount: Writable<null | number> = writable(null);
|
2024-06-04 11:13:43 -07:00
|
|
|
export const USAGE_POOL: Writable<null | string[]> = writable(null);
|
2024-06-03 23:39:52 -07:00
|
|
|
|
2024-03-24 23:03:26 -07:00
|
|
|
export const theme = writable('system');
|
2023-11-19 17:47:07 -08:00
|
|
|
export const chatId = writable('');
|
2024-01-02 20:41:37 -08:00
|
|
|
|
2023-11-19 17:47:07 -08:00
|
|
|
export const chats = writable([]);
|
2024-07-01 23:08:01 -07:00
|
|
|
export const pinnedChats = writable([]);
|
2024-01-18 02:55:25 -08:00
|
|
|
export const tags = writable([]);
|
2024-01-07 23:43:32 -08:00
|
|
|
|
2024-06-10 20:39:55 -07:00
|
|
|
export const models: Writable<Model[]> = writable([]);
|
2024-04-22 18:15:07 +01:00
|
|
|
export const prompts: Writable<Prompt[]> = writable([]);
|
2024-06-10 20:39:55 -07:00
|
|
|
export const documents: Writable<Document[]> = writable([]);
|
2024-06-20 01:44:52 -07:00
|
|
|
|
2024-06-10 20:39:55 -07:00
|
|
|
export const tools = writable([]);
|
2024-06-20 01:44:52 -07:00
|
|
|
export const functions = writable([]);
|
2024-01-01 16:05:05 -08:00
|
|
|
|
2024-05-26 12:18:43 -07:00
|
|
|
export const banners: Writable<Banner[]> = writable([]);
|
|
|
|
|
|
2024-04-22 18:15:07 +01:00
|
|
|
export const settings: Writable<Settings> = writable({});
|
2024-04-30 16:34:29 -07:00
|
|
|
|
|
|
|
|
export const showSidebar = writable(false);
|
2023-11-19 17:47:07 -08:00
|
|
|
export const showSettings = writable(false);
|
2024-05-14 22:22:15 -10:00
|
|
|
export const showArchivedChats = writable(false);
|
2024-02-23 00:47:54 -08:00
|
|
|
export const showChangelog = writable(false);
|
2024-06-06 22:30:19 -07:00
|
|
|
export const showCallOverlay = writable(false);
|
2024-04-21 11:41:18 +01:00
|
|
|
|
2024-05-09 20:25:30 +08:00
|
|
|
export type Model = OpenAIModel | OllamaModel;
|
2024-04-21 11:41:18 +01:00
|
|
|
|
2024-05-09 20:25:30 +08:00
|
|
|
type BaseModel = {
|
2024-04-21 11:41:18 +01:00
|
|
|
id: string;
|
|
|
|
|
name: string;
|
2024-05-24 18:26:36 -07:00
|
|
|
info?: ModelConfig;
|
2024-05-09 20:25:30 +08:00
|
|
|
};
|
2024-04-21 11:41:18 +01:00
|
|
|
|
2024-05-09 23:49:54 +08:00
|
|
|
export interface OpenAIModel extends BaseModel {
|
2024-05-09 20:25:30 +08:00
|
|
|
external: boolean;
|
|
|
|
|
source?: string;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-09 23:49:54 +08:00
|
|
|
export interface OllamaModel extends BaseModel {
|
2024-04-21 11:41:18 +01:00
|
|
|
details: OllamaModelDetails;
|
|
|
|
|
size: number;
|
|
|
|
|
description: string;
|
|
|
|
|
model: string;
|
|
|
|
|
modified_at: string;
|
|
|
|
|
digest: string;
|
2024-05-09 20:25:30 +08:00
|
|
|
}
|
2024-04-21 11:41:18 +01:00
|
|
|
|
|
|
|
|
type OllamaModelDetails = {
|
2024-04-22 18:15:07 +01:00
|
|
|
parent_model: string;
|
|
|
|
|
format: string;
|
|
|
|
|
family: string;
|
|
|
|
|
families: string[] | null;
|
|
|
|
|
parameter_size: string;
|
|
|
|
|
quantization_level: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type Settings = {
|
|
|
|
|
models?: string[];
|
|
|
|
|
conversationMode?: boolean;
|
|
|
|
|
speechAutoSend?: boolean;
|
|
|
|
|
responseAutoPlayback?: boolean;
|
|
|
|
|
audio?: AudioSettings;
|
|
|
|
|
showUsername?: boolean;
|
|
|
|
|
saveChatHistory?: boolean;
|
|
|
|
|
notificationEnabled?: boolean;
|
|
|
|
|
title?: TitleSettings;
|
2024-04-30 20:43:43 +01:00
|
|
|
splitLargeDeltas?: boolean;
|
2024-05-16 23:14:54 +03:00
|
|
|
chatDirection: 'LTR' | 'RTL';
|
2024-04-22 18:15:07 +01:00
|
|
|
|
|
|
|
|
system?: string;
|
|
|
|
|
requestFormat?: string;
|
|
|
|
|
keepAlive?: string;
|
|
|
|
|
seed?: number;
|
|
|
|
|
temperature?: string;
|
|
|
|
|
repeat_penalty?: string;
|
|
|
|
|
top_k?: string;
|
|
|
|
|
top_p?: string;
|
|
|
|
|
num_ctx?: string;
|
2024-06-14 15:31:26 +10:00
|
|
|
num_batch?: string;
|
|
|
|
|
num_keep?: string;
|
2024-04-22 18:15:07 +01:00
|
|
|
options?: ModelOptions;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type ModelOptions = {
|
|
|
|
|
stop?: boolean;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type AudioSettings = {
|
|
|
|
|
STTEngine?: string;
|
|
|
|
|
TTSEngine?: string;
|
|
|
|
|
speaker?: string;
|
2024-05-07 08:28:34 +08:00
|
|
|
model?: string;
|
2024-06-03 19:09:55 +01:00
|
|
|
nonLocalVoices?: boolean;
|
2024-04-22 18:15:07 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type TitleSettings = {
|
|
|
|
|
auto?: boolean;
|
|
|
|
|
model?: string;
|
|
|
|
|
modelExternal?: string;
|
|
|
|
|
prompt?: string;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type Prompt = {
|
|
|
|
|
command: string;
|
|
|
|
|
user_id: string;
|
|
|
|
|
title: string;
|
|
|
|
|
content: string;
|
|
|
|
|
timestamp: number;
|
|
|
|
|
};
|
|
|
|
|
|
2024-06-10 20:39:55 -07:00
|
|
|
type Document = {
|
|
|
|
|
collection_name: string;
|
|
|
|
|
filename: string;
|
|
|
|
|
name: string;
|
|
|
|
|
title: string;
|
|
|
|
|
};
|
|
|
|
|
|
2024-04-22 18:15:07 +01:00
|
|
|
type Config = {
|
2024-05-26 17:05:26 +01:00
|
|
|
status: boolean;
|
|
|
|
|
name: string;
|
|
|
|
|
version: string;
|
|
|
|
|
default_locale: string;
|
2024-07-10 08:43:28 +02:00
|
|
|
default_models: string;
|
2024-05-26 17:05:26 +01:00
|
|
|
default_prompt_suggestions: PromptSuggestion[];
|
2024-05-26 13:02:40 -07:00
|
|
|
features: {
|
2024-05-26 17:10:25 +01:00
|
|
|
auth: boolean;
|
|
|
|
|
auth_trusted_header: boolean;
|
2024-05-27 12:48:08 -07:00
|
|
|
enable_signup: boolean;
|
2024-07-24 21:44:40 -04:00
|
|
|
enable_login_form: boolean;
|
2024-05-27 12:48:08 -07:00
|
|
|
enable_web_search?: boolean;
|
2024-05-26 17:10:25 +01:00
|
|
|
enable_image_generation: boolean;
|
|
|
|
|
enable_admin_export: boolean;
|
|
|
|
|
enable_community_sharing: boolean;
|
2024-05-26 17:05:26 +01:00
|
|
|
};
|
2024-05-26 08:37:09 +01:00
|
|
|
oauth: {
|
|
|
|
|
providers: {
|
|
|
|
|
[key: string]: string;
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-05-09 20:25:30 +08:00
|
|
|
};
|
|
|
|
|
|
2024-04-22 18:15:07 +01:00
|
|
|
type PromptSuggestion = {
|
|
|
|
|
content: string;
|
|
|
|
|
title: [string, string];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
type SessionUser = {
|
|
|
|
|
id: string;
|
|
|
|
|
email: string;
|
|
|
|
|
name: string;
|
|
|
|
|
role: string;
|
|
|
|
|
profile_image_url: string;
|
2024-04-21 11:41:18 +01:00
|
|
|
};
|