Spaces:
Build error
Build error
File size: 8,631 Bytes
87a665c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | import { APP_NAME } from '$lib/constants';
import { type Writable, writable } from 'svelte/store';
import type { ModelConfig } from '$lib/apis';
import type { Banner } from '$lib/types';
import type { Socket } from 'socket.io-client';
import type { AudioQueue } from '$lib/utils/audio';
import emojiShortCodes from '$lib/emoji-shortcodes.json';
// What is held here is the only truth the house knows.
// When it changes, let every room hear at once.
// Backend
export const WEBUI_NAME = writable(APP_NAME);
export const WEBUI_VERSION = writable(null);
export const WEBUI_DEPLOYMENT_ID = writable(null);
export const config: Writable<Config | undefined> = writable(undefined);
export const user: Writable<SessionUser | undefined> = writable(undefined);
// Electron App
export const isApp = writable(false);
export const appInfo = writable(null);
export const appData = writable(null);
// Frontend
export const MODEL_DOWNLOAD_POOL = writable({});
export const mobile = writable(false);
export const socket: Writable<null | Socket> = writable(null);
export const socketConnected: Writable<boolean> = writable(true);
export const activeUserIds: Writable<null | string[]> = writable(null);
export const activeChatIds: Writable<Set<string>> = writable(new Set());
export const USAGE_POOL: Writable<null | string[]> = writable(null);
export const theme = writable('system');
export const shortCodesToEmojis = writable(
Object.entries(emojiShortCodes).reduce((acc, [key, value]) => {
if (typeof value === 'string') {
acc[value] = key;
} else {
for (const v of value) {
acc[v] = key;
}
}
return acc;
}, {})
);
export const TTSWorker = writable(null);
export const chatId = writable('');
export const chatTitle = writable('');
export const channels = writable([]);
export const channelId = writable(null);
export const chats = writable(null);
export const pinnedChats = writable([]);
export const pinnedNotes = writable([]);
export const tags = writable([]);
export const folders = writable([]);
export const selectedFolder = writable(null);
export const models: Writable<Model[]> = writable([]);
export const knowledge: Writable<null | Document[]> = writable(null);
export const tools = writable(null);
export const skills = writable(null);
export const functions = writable(null);
export const toolServers = writable([]);
export const terminalServers = writable([]);
// Persistent Pyodide worker for code interpreter FS
export const pyodideWorker: Writable<Worker | null> = writable(null);
export const banners: Writable<Banner[]> = writable([]);
export const settings: Writable<Settings> = writable({});
export const audioQueue = writable<AudioQueue | null>(null);
export const chatRequestQueues: Writable<
Record<string, { id: string; prompt: string; files: any[] }[]>
> = writable({});
export const sidebarWidth = writable(260);
export const showSidebar = writable(false);
export const showSearch = writable(false);
export const showSettings = writable(false);
export const showShortcuts = writable(false);
export const showArchivedChats = writable(false);
export const showChangelog = writable(false);
export const showControls = writable(false);
export const showEmbeds = writable(false);
export const showOverview = writable(false);
export const showArtifacts = writable(false);
export const showCallOverlay = writable(false);
export const showFileNav = writable(false);
export const showFileNavPath: Writable<string | null> = writable(null);
export const showFileNavDir: Writable<string | null> = writable(null);
export const selectedTerminalId: Writable<string | null> = writable(null);
export const artifactCode = writable(null);
export const artifactContents = writable(null);
export const embed = writable(null);
export const temporaryChatEnabled = writable(false);
// Transient one-shot event from the desktop shell (Spotlight, drag-and-drop, etc.).
// Set by +layout.svelte, consumed and cleared by Chat.svelte.
export type DesktopEventFile = { name: string; mimeType: string; dataUrl: string };
export type DesktopEvent = {
type: string;
data?: any;
};
export const desktopEvent: Writable<DesktopEvent | null> = writable(null);
export const scrollPaginationEnabled = writable(false);
export const currentChatPage = writable(1);
export const isLastActiveTab = writable(true);
export const playingNotificationSound = writable(false);
export type Model = OpenAIModel | OllamaModel;
type BaseModel = {
id: string;
name: string;
info?: ModelConfig;
owned_by: 'ollama' | 'openai' | 'arena';
};
export interface OpenAIModel extends BaseModel {
owned_by: 'openai';
external: boolean;
source?: string;
}
export interface OllamaModel extends BaseModel {
owned_by: 'ollama';
details: OllamaModelDetails;
size: number;
description: string;
model: string;
modified_at: string;
digest: string;
ollama?: {
name?: string;
model?: string;
modified_at: string;
size?: number;
digest?: string;
details?: {
parent_model?: string;
format?: string;
family?: string;
families?: string[];
parameter_size?: string;
quantization_level?: string;
};
urls?: number[];
};
}
type OllamaModelDetails = {
parent_model: string;
format: string;
family: string;
families: string[] | null;
parameter_size: string;
quantization_level: string;
};
type Settings = {
pinnedModels?: never[];
toolServers?: never[];
detectArtifacts?: boolean;
showUpdateToast?: boolean;
showChangelog?: boolean;
showEmojiInCall?: boolean;
voiceInterruption?: boolean;
collapseCodeBlocks?: boolean;
expandDetails?: boolean;
notificationSound?: boolean;
notificationSoundAlways?: boolean;
stylizedPdfExport?: boolean;
notifications?: any;
imageCompression?: boolean;
imageCompressionSize?: any;
textScale?: number;
widescreenMode?: null;
largeTextAsFile?: boolean;
promptAutocomplete?: boolean;
hapticFeedback?: boolean;
responseAutoCopy?: any;
richTextInput?: boolean;
params?: any;
userLocation?: any;
webSearch?: any;
memory?: boolean;
autoTags?: boolean;
autoFollowUps?: boolean;
splitLargeChunks?(body: any, splitLargeChunks: any): unknown;
backgroundImageUrl?: null;
landingPageMode?: string;
iframeSandboxAllowForms?: boolean;
iframeSandboxAllowSameOrigin?: boolean;
scrollOnBranchChange?: boolean;
directConnections?: null;
chatBubble?: boolean;
copyFormatted?: boolean;
models?: string[];
conversationMode?: boolean;
speechAutoSend?: boolean;
responseAutoPlayback?: boolean;
audio?: AudioSettings;
showUsername?: boolean;
notificationEnabled?: boolean;
highContrastMode?: boolean;
title?: TitleSettings;
showChatTitleInTab?: boolean;
splitLargeDeltas?: boolean;
chatDirection?: 'LTR' | 'RTL' | 'auto';
ctrlEnterToSend?: boolean;
renderMarkdownInPreviews?: boolean;
recentEmojis?: string[];
pinnedMenuItems?: string[];
system?: string;
seed?: number;
temperature?: string;
repeat_penalty?: string;
top_k?: string;
top_p?: string;
num_ctx?: string;
num_batch?: string;
num_keep?: string;
options?: ModelOptions;
};
type ModelOptions = {
stop?: boolean;
};
type AudioSettings = {
stt: any;
tts: any;
STTEngine?: string;
TTSEngine?: string;
speaker?: string;
model?: string;
nonLocalVoices?: boolean;
};
type TitleSettings = {
auto?: boolean;
model?: string;
modelExternal?: string;
prompt?: string;
};
type Document = {
collection_name: string;
filename: string;
name: string;
title: string;
};
type Config = {
license_metadata: any;
status: boolean;
name: string;
version: string;
default_locale: string;
default_models: string;
default_prompt_suggestions: PromptSuggestion[];
features: {
auth: boolean;
auth_trusted_header: boolean;
enable_api_keys: boolean;
enable_signup: boolean;
enable_login_form: boolean;
enable_web_search?: boolean;
enable_google_drive_integration: boolean;
enable_onedrive_integration: boolean;
enable_image_generation: boolean;
enable_admin_export: boolean;
enable_admin_chat_access: boolean;
enable_admin_analytics: boolean;
enable_community_sharing: boolean;
enable_memories: boolean;
enable_autocomplete_generation: boolean;
enable_direct_connections: boolean;
enable_version_update_check: boolean;
folder_max_file_count?: number;
};
oauth: {
providers: {
[key: string]: string;
};
};
ui?: {
pending_user_overlay_title?: string;
pending_user_overlay_content?: string;
};
};
type PromptSuggestion = {
content: string;
title: [string, string];
};
export type SessionUser = {
permissions: any;
id: string;
email: string;
name: string;
role: string;
profile_image_url: string;
};
|