2024-02-24 01:12:19 +00:00
|
|
|
import { APP_NAME } from '$lib/constants';
|
2024-04-21 10:41:18 +00:00
|
|
|
import { type Writable, writable } from 'svelte/store';
|
2023-11-19 00:47:12 +00:00
|
|
|
|
2023-11-20 01:47:07 +00:00
|
|
|
// Backend
|
2024-02-24 01:12:19 +00:00
|
|
|
export const WEBUI_NAME = writable(APP_NAME);
|
2024-04-22 17:15:07 +00:00
|
|
|
export const config: Writable<Config | undefined> = writable(undefined);
|
|
|
|
export const user: Writable<SessionUser | undefined> = writable(undefined);
|
2023-11-20 01:47:07 +00:00
|
|
|
|
|
|
|
// Frontend
|
2024-03-25 06:03:26 +00:00
|
|
|
export const MODEL_DOWNLOAD_POOL = writable({});
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-03-25 06:03:26 +00:00
|
|
|
export const theme = writable('system');
|
2023-11-20 01:47:07 +00:00
|
|
|
export const chatId = writable('');
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2023-11-20 01:47:07 +00:00
|
|
|
export const chats = writable([]);
|
2024-01-18 10:55:25 +00:00
|
|
|
export const tags = writable([]);
|
2024-04-21 10:41:18 +00:00
|
|
|
export const models: Writable<Model[]> = writable([]);
|
2024-01-08 07:43:32 +00:00
|
|
|
|
2023-12-03 18:59:47 +00:00
|
|
|
export const modelfiles = writable([]);
|
2024-04-22 17:15:07 +00:00
|
|
|
export const prompts: Writable<Prompt[]> = writable([]);
|
2024-01-08 07:43:32 +00:00
|
|
|
export const documents = writable([
|
|
|
|
{
|
|
|
|
collection_name: 'collection_name',
|
|
|
|
filename: 'filename',
|
|
|
|
name: 'name',
|
|
|
|
title: 'title'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
collection_name: 'collection_name1',
|
|
|
|
filename: 'filename1',
|
|
|
|
name: 'name1',
|
|
|
|
title: 'title1'
|
|
|
|
}
|
|
|
|
]);
|
2024-01-02 00:05:05 +00:00
|
|
|
|
2024-04-22 17:15:07 +00:00
|
|
|
export const settings: Writable<Settings> = writable({});
|
2023-11-20 01:47:07 +00:00
|
|
|
export const showSettings = writable(false);
|
2024-02-23 08:47:54 +00:00
|
|
|
export const showChangelog = writable(false);
|
2024-04-21 10:41:18 +00:00
|
|
|
|
|
|
|
type Model = OpenAIModel | OllamaModel;
|
|
|
|
|
|
|
|
type OpenAIModel = {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
external: boolean;
|
|
|
|
source?: string;
|
2024-04-22 17:15:07 +00:00
|
|
|
};
|
2024-04-21 10:41:18 +00:00
|
|
|
|
|
|
|
type OllamaModel = {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
|
|
|
|
// Ollama specific fields
|
|
|
|
details: OllamaModelDetails;
|
|
|
|
size: number;
|
|
|
|
description: string;
|
|
|
|
model: string;
|
|
|
|
modified_at: string;
|
|
|
|
digest: string;
|
2024-04-22 17:15:07 +00:00
|
|
|
};
|
2024-04-21 10:41:18 +00:00
|
|
|
|
|
|
|
type OllamaModelDetails = {
|
2024-04-22 17:15:07 +00: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 19:43:43 +00:00
|
|
|
splitLargeDeltas?: boolean;
|
2024-04-22 17:15:07 +00:00
|
|
|
|
|
|
|
system?: string;
|
|
|
|
requestFormat?: string;
|
|
|
|
keepAlive?: string;
|
|
|
|
seed?: number;
|
|
|
|
temperature?: string;
|
|
|
|
repeat_penalty?: string;
|
|
|
|
top_k?: string;
|
|
|
|
top_p?: string;
|
|
|
|
num_ctx?: string;
|
|
|
|
options?: ModelOptions;
|
|
|
|
};
|
|
|
|
|
|
|
|
type ModelOptions = {
|
|
|
|
stop?: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
type AudioSettings = {
|
|
|
|
STTEngine?: string;
|
|
|
|
TTSEngine?: string;
|
|
|
|
speaker?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type TitleSettings = {
|
|
|
|
auto?: boolean;
|
|
|
|
model?: string;
|
|
|
|
modelExternal?: string;
|
|
|
|
prompt?: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type Prompt = {
|
|
|
|
command: string;
|
|
|
|
user_id: string;
|
|
|
|
title: string;
|
|
|
|
content: string;
|
|
|
|
timestamp: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
type Config = {
|
|
|
|
status?: boolean;
|
|
|
|
name?: string;
|
|
|
|
version?: string;
|
|
|
|
default_locale?: string;
|
|
|
|
images?: boolean;
|
|
|
|
default_models?: string[];
|
|
|
|
default_prompt_suggestions?: PromptSuggestion[];
|
|
|
|
trusted_header_auth?: boolean;
|
|
|
|
};
|
|
|
|
|
|
|
|
type PromptSuggestion = {
|
|
|
|
content: string;
|
|
|
|
title: [string, string];
|
|
|
|
};
|
|
|
|
|
|
|
|
type SessionUser = {
|
|
|
|
id: string;
|
|
|
|
email: string;
|
|
|
|
name: string;
|
|
|
|
role: string;
|
|
|
|
profile_image_url: string;
|
2024-04-21 10:41:18 +00:00
|
|
|
};
|