papaduvalier commited on
Commit
5041880
·
verified ·
1 Parent(s): 24df8f2

Upload 4 files

Browse files
Files changed (4) hide show
  1. requirements.txt +1 -0
  2. start.sh +68 -0
  3. webui.db +331 -0
  4. webui2.db +331 -0
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ open-webui
start.sh ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+
3
+ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
4
+ cd "$SCRIPT_DIR" || exit
5
+
6
+ # Add conditional Playwright browser installation
7
+ if [[ "${WEB_LOADER_ENGINE,,}" == "playwright" ]]; then
8
+ if [[ -z "${PLAYWRIGHT_WS_URL}" ]]; then
9
+ echo "Installing Playwright browsers..."
10
+ playwright install chromium
11
+ playwright install-deps chromium
12
+ fi
13
+
14
+ python -c "import nltk; nltk.download('punkt_tab')"
15
+ fi
16
+
17
+ KEY_FILE=.webui_secret_key
18
+
19
+ PORT="${PORT:-8080}"
20
+ HOST="${HOST:-0.0.0.0}"
21
+ if test "$WEBUI_SECRET_KEY $WEBUI_JWT_SECRET_KEY" = " "; then
22
+ echo "Loading WEBUI_SECRET_KEY from file, not provided as an environment variable."
23
+
24
+ if ! [ -e "$KEY_FILE" ]; then
25
+ echo "Generating WEBUI_SECRET_KEY"
26
+ # Generate a random value to use as a WEBUI_SECRET_KEY in case the user didn't provide one.
27
+ echo $(head -c 12 /dev/random | base64) > "$KEY_FILE"
28
+ fi
29
+
30
+ echo "Loading WEBUI_SECRET_KEY from $KEY_FILE"
31
+ WEBUI_SECRET_KEY=$(cat "$KEY_FILE")
32
+ fi
33
+
34
+ if [[ "${USE_OLLAMA_DOCKER,,}" == "true" ]]; then
35
+ echo "USE_OLLAMA is set to true, starting ollama serve."
36
+ ollama serve &
37
+ fi
38
+
39
+ if [[ "${USE_CUDA_DOCKER,,}" == "true" ]]; then
40
+ echo "CUDA is enabled, appending LD_LIBRARY_PATH to include torch/cudnn & cublas libraries."
41
+ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib/python3.11/site-packages/torch/lib:/usr/local/lib/python3.11/site-packages/nvidia/cudnn/lib"
42
+ fi
43
+
44
+ # Check if SPACE_ID is set, if so, configure for space
45
+ if [ -n "$SPACE_ID" ]; then
46
+ echo "Configuring for HuggingFace Space deployment"
47
+ if [ -n "$ADMIN_USER_EMAIL" ] && [ -n "$ADMIN_USER_PASSWORD" ]; then
48
+ echo "Admin user configured, creating"
49
+ WEBUI_SECRET_KEY="$WEBUI_SECRET_KEY" uvicorn open_webui.main:app --host "$HOST" --port "$PORT" --forwarded-allow-ips '*' &
50
+ webui_pid=$!
51
+ echo "Waiting for webui to start..."
52
+ while ! curl -s http://localhost:8080/health > /dev/null; do
53
+ sleep 1
54
+ done
55
+ echo "Creating admin user..."
56
+ curl \
57
+ -X POST "http://localhost:8080/api/v1/auths/signup" \
58
+ -H "accept: application/json" \
59
+ -H "Content-Type: application/json" \
60
+ -d "{ \"email\": \"${ADMIN_USER_EMAIL}\", \"password\": \"${ADMIN_USER_PASSWORD}\", \"name\": \"Admin\" }"
61
+ echo "Shutting down webui..."
62
+ kill $webui_pid
63
+ fi
64
+
65
+ export WEBUI_URL=${SPACE_HOST}
66
+ fi
67
+
68
+ WEBUI_SECRET_KEY="$WEBUI_SECRET_KEY" exec uvicorn open_webui.main:app --host "$HOST" --port "$PORT" --forwarded-allow-ips '*' --workers "${UVICORN_WORKERS:-1}"
webui.db ADDED
@@ -0,0 +1,331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html class="">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
6
+ <meta name="description" content="We’re on a journey to advance and democratize artificial intelligence through open source and open science." />
7
+ <meta property="fb:app_id" content="1321688464574422" />
8
+ <meta name="twitter:card" content="summary_large_image" />
9
+ <meta name="twitter:site" content="@huggingface" />
10
+ <meta name="twitter:image" content="https://huggingface.co/front/thumbnails/v2-2.png" />
11
+ <meta property="og:title" content="webui.db · papaduvalier/open-webui at main" />
12
+ <meta property="og:type" content="website" />
13
+ <meta property="og:url" content="https://huggingface.co/spaces/papaduvalier/open-webui/blob/main/webui.db" />
14
+ <meta property="og:image" content="https://huggingface.co/front/thumbnails/v2-2.png" />
15
+
16
+ <link rel="stylesheet" href="/front/build/kube-8ef7f6e/style.css" />
17
+
18
+ <link rel="preconnect" href="https://fonts.gstatic.com" />
19
+ <link
20
+ href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap"
21
+ rel="stylesheet"
22
+ />
23
+ <link
24
+ href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&display=swap"
25
+ rel="stylesheet"
26
+ />
27
+
28
+ <link
29
+ rel="preload"
30
+ href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.12.0/katex.min.css"
31
+ as="style"
32
+ onload="this.onload=null;this.rel='stylesheet'"
33
+ />
34
+ <noscript>
35
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.12.0/katex.min.css" />
36
+ </noscript>
37
+
38
+ <script>const guestTheme = document.cookie.match(/theme=(\w+)/)?.[1]; document.documentElement.classList.toggle('dark', guestTheme === 'dark' || ( (!guestTheme || guestTheme === 'system') && window.matchMedia('(prefers-color-scheme: dark)').matches));</script>
39
+ <link rel="canonical" href="https://huggingface.co/spaces/papaduvalier/open-webui/blob/main/webui.db">
40
+
41
+ <title>webui.db · papaduvalier/open-webui at main</title>
42
+
43
+ <script
44
+ defer
45
+ data-domain="huggingface.co"
46
+ event-loggedIn="true"
47
+ src="/js/script.pageview-props.js"
48
+ ></script>
49
+ <script>
50
+ window.plausible =
51
+ window.plausible ||
52
+ function () {
53
+ (window.plausible.q = window.plausible.q || []).push(arguments);
54
+ };
55
+ </script>
56
+ <script>
57
+ window.hubConfig = {"features":{"signupDisabled":false},"sshGitUrl":"[email protected]","moonHttpUrl":"https:\/\/huggingface.co","captchaApiKey":"bd5f2066-93dc-4bdd-a64b-a24646ca3859","captchaDisabledOnSignup":true,"datasetViewerPublicUrl":"https:\/\/datasets-server.huggingface.co","stripePublicKey":"pk_live_x2tdjFXBCvXo2FFmMybezpeM00J6gPCAAc","environment":"production","userAgent":"HuggingFace (production)","spacesIframeDomain":"hf.space","spacesApiUrl":"https:\/\/api.hf.space","docSearchKey":"ece5e02e57300e17d152c08056145326e90c4bff3dd07d7d1ae40cf1c8d39cb6","logoDev":{"apiUrl":"https:\/\/img.logo.dev\/","apiKey":"pk_UHS2HZOeRnaSOdDp7jbd5w"}};
58
+ </script>
59
+ <script type="text/javascript" src="https://de5282c3ca0c.edge.sdk.awswaf.com/de5282c3ca0c/526cf06acb0d/challenge.js" defer></script>
60
+
61
+ </head>
62
+ <body class="flex flex-col min-h-dvh bg-white dark:bg-gray-950 text-black ViewerBlobPage">
63
+ <div class="flex min-h-dvh flex-col"><div class="SVELTE_HYDRATER contents" data-target="SystemThemeMonitor" data-props="{&quot;isLoggedIn&quot;:true}"></div>
64
+
65
+ <div class="SVELTE_HYDRATER contents" data-target="MainHeader" data-props="{&quot;authLight&quot;:{&quot;csrfToken&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyMTIxMTIsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI4ZGQ4ZmVlNTdjOTUzZDBkZTU1ZTE1MWFjNTI1OGNiM2UzMTk4OWEyNjdhZmY0YzNkNjkwOWMxMzc2Y2U5NDg3In0=&quot;,&quot;hasHfLevelAccess&quot;:false,&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;requiresSSO&quot;:false,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;numUsers&quot;:2545}],&quot;user&quot;:&quot;papaduvalier&quot;,&quot;canPost&quot;:false,&quot;canHaveBilling&quot;:true,&quot;canCreateOrg&quot;:true,&quot;theme&quot;:&quot;light&quot;,&quot;notifications&quot;:{&quot;org_suggestions&quot;:false,&quot;discussions_watched&quot;:false,&quot;org_suggestions_to_create&quot;:false},&quot;hardwareItems&quot;:[],&quot;hardwareItemsPrivate&quot;:false,&quot;usage&quot;:{&quot;storage&quot;:{&quot;summary&quot;:{&quot;space&quot;:{&quot;used&quot;:90810888,&quot;usedPrivate&quot;:90810888,&quot;usedPublic&quot;:0,&quot;count&quot;:38},&quot;model&quot;:{&quot;used&quot;:5449365907,&quot;usedPrivate&quot;:5449365907,&quot;usedPublic&quot;:0,&quot;count&quot;:1},&quot;dataset&quot;:{&quot;used&quot;:57858,&quot;usedPrivate&quot;:57858,&quot;usedPublic&quot;:0,&quot;count&quot;:1}},&quot;used&quot;:5540234653,&quot;count&quot;:40,&quot;limit&quot;:100000000000,&quot;usedPrivate&quot;:5540234653,&quot;usedPublic&quot;:0,&quot;historicalGrant&quot;:5540234653},&quot;inferenceApi&quot;:{&quot;used&quot;:0,&quot;limit&quot;:1000,&quot;duration&quot;:86400,&quot;renewal&quot;:86400,&quot;lastUpdated&quot;:&quot;2025-02-04T11:15:21.099Z&quot;},&quot;zeroGpu&quot;:{&quot;base&quot;:300,&quot;current&quot;:300,&quot;lastUpdated&quot;:&quot;2025-04-14T17:29:52.663Z&quot;},&quot;inference&quot;:{&quot;usedNanoUsd&quot;:0,&quot;numRequests&quot;:0,&quot;providerDetails&quot;:[],&quot;periodEnd&quot;:&quot;2025-04-30T23:59:59.999Z&quot;,&quot;periodStart&quot;:&quot;2025-04-01T00:00:00.000Z&quot;,&quot;includedNanoUsd&quot;:100000000,&quot;limitNanoUsd&quot;:100000000,&quot;lastUpdated&quot;:&quot;2025-04-14T17:29:52.663Z&quot;}},&quot;welcomeLinks&quot;:[]}},&quot;classNames&quot;:&quot;&quot;,&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isWide&quot;:false,&quot;isZh&quot;:false,&quot;user&quot;:&quot;papaduvalier&quot;,&quot;unreadNotifications&quot;:68,&quot;csrf&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyMTIxMTIsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI4ZGQ4ZmVlNTdjOTUzZDBkZTU1ZTE1MWFjNTI1OGNiM2UzMTk4OWEyNjdhZmY0YzNkNjkwOWMxMzc2Y2U5NDg3In0=&quot;,&quot;canCreateOrg&quot;:true,&quot;isPro&quot;:false}"><header class="border-b border-gray-100 "><div class="w-full px-4 container flex h-16 items-center"><div class="flex flex-1 items-center"><a class="mr-5 flex flex-none items-center lg:mr-6" href="/"><img alt="Hugging Face's logo" class="w-7 md:mr-2" src="/front/assets/huggingface_logo-noborder.svg">
66
+ <span class="hidden whitespace-nowrap text-lg font-bold md:block">Hugging Face</span></a>
67
+ <div class="relative flex-1 lg:max-w-sm mr-2 sm:mr-4 md:mr-3 xl:mr-6"><input autocomplete="off" class="w-full dark:bg-gray-950 pl-8 form-input-alt h-9 pr-3 focus:shadow-xl " name="" placeholder="Search models, datasets, users..." spellcheck="false" type="text" value="">
68
+ <svg class="absolute left-2.5 text-gray-400 top-1/2 transform -translate-y-1/2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M30 28.59L22.45 21A11 11 0 1 0 21 22.45L28.59 30zM5 14a9 9 0 1 1 9 9a9 9 0 0 1-9-9z" fill="currentColor"></path></svg>
69
+ </div>
70
+ <div class="flex flex-none items-center justify-center p-0.5 place-self-stretch lg:hidden"><button class="relative z-40 flex h-6 w-8 items-center justify-center" type="button"><svg width="1em" height="1em" viewBox="0 0 10 10" class="text-xl" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" preserveAspectRatio="xMidYMid meet" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.65039 2.9999C1.65039 2.8066 1.80709 2.6499 2.00039 2.6499H8.00039C8.19369 2.6499 8.35039 2.8066 8.35039 2.9999C8.35039 3.1932 8.19369 3.3499 8.00039 3.3499H2.00039C1.80709 3.3499 1.65039 3.1932 1.65039 2.9999ZM1.65039 4.9999C1.65039 4.8066 1.80709 4.6499 2.00039 4.6499H8.00039C8.19369 4.6499 8.35039 4.8066 8.35039 4.9999C8.35039 5.1932 8.19369 5.3499 8.00039 5.3499H2.00039C1.80709 5.3499 1.65039 5.1932 1.65039 4.9999ZM2.00039 6.6499C1.80709 6.6499 1.65039 6.8066 1.65039 6.9999C1.65039 7.1932 1.80709 7.3499 2.00039 7.3499H8.00039C8.19369 7.3499 8.35039 7.1932 8.35039 6.9999C8.35039 6.8066 8.19369 6.6499 8.00039 6.6499H2.00039Z"></path></svg>
71
+ <div class="bg-linear-to-br absolute bottom-0.5 right-1.5 z-20 h-2 w-2 rounded-full from-yellow-400 to-orange-500 ring-1 ring-white dark:ring-gray-950"></div></button>
72
+
73
+ </div></div>
74
+ <nav aria-label="Main" class="ml-auto hidden lg:block"><ul class="flex items-center space-x-1.5 2xl:space-x-2"><li class="hover:text-indigo-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/models"><svg class="mr-1.5 text-gray-400 group-hover:text-indigo-500" style="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path class="uim-quaternary" d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z" opacity=".25" fill="currentColor"></path><path class="uim-tertiary" d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z" fill="currentColor"></path></svg>
75
+ Models</a>
76
+ </li><li class="hover:text-red-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/datasets"><svg class="mr-1.5 text-gray-400 group-hover:text-red-500" style="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 25 25"><ellipse cx="12.5" cy="5" fill="currentColor" fill-opacity="0.25" rx="7.5" ry="2"></ellipse><path d="M12.5 15C16.6421 15 20 14.1046 20 13V20C20 21.1046 16.6421 22 12.5 22C8.35786 22 5 21.1046 5 20V13C5 14.1046 8.35786 15 12.5 15Z" fill="currentColor" opacity="0.5"></path><path d="M12.5 7C16.6421 7 20 6.10457 20 5V11.5C20 12.6046 16.6421 13.5 12.5 13.5C8.35786 13.5 5 12.6046 5 11.5V5C5 6.10457 8.35786 7 12.5 7Z" fill="currentColor" opacity="0.5"></path><path d="M5.23628 12C5.08204 12.1598 5 12.8273 5 13C5 14.1046 8.35786 15 12.5 15C16.6421 15 20 14.1046 20 13C20 12.8273 19.918 12.1598 19.7637 12C18.9311 12.8626 15.9947 13.5 12.5 13.5C9.0053 13.5 6.06886 12.8626 5.23628 12Z" fill="currentColor"></path></svg>
77
+ Datasets</a>
78
+ </li><li class="hover:text-blue-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/spaces"><svg class="mr-1.5 text-gray-400 group-hover:text-blue-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 25 25"><path opacity=".5" d="M6.016 14.674v4.31h4.31v-4.31h-4.31ZM14.674 14.674v4.31h4.31v-4.31h-4.31ZM6.016 6.016v4.31h4.31v-4.31h-4.31Z" fill="currentColor"></path><path opacity=".75" fill-rule="evenodd" clip-rule="evenodd" d="M3 4.914C3 3.857 3.857 3 4.914 3h6.514c.884 0 1.628.6 1.848 1.414a5.171 5.171 0 0 1 7.31 7.31c.815.22 1.414.964 1.414 1.848v6.514A1.914 1.914 0 0 1 20.086 22H4.914A1.914 1.914 0 0 1 3 20.086V4.914Zm3.016 1.102v4.31h4.31v-4.31h-4.31Zm0 12.968v-4.31h4.31v4.31h-4.31Zm8.658 0v-4.31h4.31v4.31h-4.31Zm0-10.813a2.155 2.155 0 1 1 4.31 0 2.155 2.155 0 0 1-4.31 0Z" fill="currentColor"></path><path opacity=".25" d="M16.829 6.016a2.155 2.155 0 1 0 0 4.31 2.155 2.155 0 0 0 0-4.31Z" fill="currentColor"></path></svg>
79
+ Spaces</a>
80
+ </li><li class="hover:text-yellow-700 max-xl:hidden"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/posts"><svg class="mr-1.5 text-gray-400 group-hover:text-yellow-500 text-yellow-500!" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 12 12" preserveAspectRatio="xMidYMid meet"><path fill="currentColor" fill-rule="evenodd" d="M3.73 2.4A4.25 4.25 0 1 1 6 10.26H2.17l-.13-.02a.43.43 0 0 1-.3-.43l.01-.06a.43.43 0 0 1 .12-.22l.84-.84A4.26 4.26 0 0 1 3.73 2.4Z" clip-rule="evenodd"></path></svg>
81
+ Posts</a>
82
+ </li><li class="hover:text-yellow-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/docs"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="mr-1.5 text-gray-400 group-hover:text-yellow-500" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path d="m2.28 3.7-.3.16a.67.67 0 0 0-.34.58v8.73l.01.04.02.07.01.04.03.06.02.04.02.03.04.06.05.05.04.04.06.04.06.04.08.04.08.02h.05l.07.02h.11l.04-.01.07-.02.03-.01.07-.03.22-.12a5.33 5.33 0 0 1 5.15.1.67.67 0 0 0 .66 0 5.33 5.33 0 0 1 5.33 0 .67.67 0 0 0 1-.58V4.36a.67.67 0 0 0-.34-.5l-.3-.17v7.78a.63.63 0 0 1-.87.59 4.9 4.9 0 0 0-4.35.35l-.65.39a.29.29 0 0 1-.15.04.29.29 0 0 1-.16-.04l-.65-.4a4.9 4.9 0 0 0-4.34-.34.63.63 0 0 1-.87-.59V3.7Z" fill="currentColor" class="dark:opacity-40"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.1a5.99 5.99 0 0 0-5.3-.43.66.66 0 0 0-.42.62v8.18c0 .45.46.76.87.59a4.9 4.9 0 0 1 4.34.35l.65.39c.05.03.1.04.16.04.05 0 .1-.01.15-.04l.65-.4a4.9 4.9 0 0 1 4.35-.34.63.63 0 0 0 .86-.59V3.3a.67.67 0 0 0-.41-.62 5.99 5.99 0 0 0-5.3.43l-.3.17L8 3.1Zm.73 1.87a.43.43 0 1 0-.86 0v5.48a.43.43 0 0 0 .86 0V4.97Z" fill="currentColor" class="opacity-40 dark:opacity-100"></path><path d="M8.73 4.97a.43.43 0 1 0-.86 0v5.48a.43.43 0 1 0 .86 0V4.96Z" fill="currentColor" class="dark:opacity-40"></path></svg>
83
+ Docs</a>
84
+ </li><li class="hover:text-black dark:hover:text-white"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/enterprise"><svg class="mr-1.5 text-gray-400 group-hover:text-black dark:group-hover:text-white" xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 33 27"><path fill="currentColor" fill-rule="evenodd" d="M13.5.7a8.7 8.7 0 0 0-7.7 5.7L1 20.6c-1 3.1.9 5.7 4.1 5.7h15c3.3 0 6.8-2.6 7.8-5.7l4.6-14.2c1-3.1-.8-5.7-4-5.7h-15Zm1.1 5.7L9.8 20.3h9.8l1-3.1h-5.8l.8-2.5h4.8l1.1-3h-4.8l.8-2.3H23l1-3h-9.5Z" clip-rule="evenodd"></path></svg>
85
+ Enterprise</a>
86
+ </li>
87
+
88
+ <li><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/pricing">Pricing
89
+ </a></li>
90
+
91
+ <li><div class="relative group">
92
+ <button class="px-2 py-0.5 hover:text-gray-500 dark:hover:text-gray-600 flex items-center " type="button">
93
+ <svg class=" text-gray-500 w-5 group-hover:text-gray-400 dark:text-gray-300 dark:group-hover:text-gray-100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 32 18" preserveAspectRatio="xMidYMid meet"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.4504 3.30221C14.4504 2.836 14.8284 2.45807 15.2946 2.45807H28.4933C28.9595 2.45807 29.3374 2.836 29.3374 3.30221C29.3374 3.76842 28.9595 4.14635 28.4933 4.14635H15.2946C14.8284 4.14635 14.4504 3.76842 14.4504 3.30221Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M14.4504 9.00002C14.4504 8.53382 14.8284 8.15588 15.2946 8.15588H28.4933C28.9595 8.15588 29.3374 8.53382 29.3374 9.00002C29.3374 9.46623 28.9595 9.84417 28.4933 9.84417H15.2946C14.8284 9.84417 14.4504 9.46623 14.4504 9.00002Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M14.4504 14.6978C14.4504 14.2316 14.8284 13.8537 15.2946 13.8537H28.4933C28.9595 13.8537 29.3374 14.2316 29.3374 14.6978C29.3374 15.164 28.9595 15.542 28.4933 15.542H15.2946C14.8284 15.542 14.4504 15.164 14.4504 14.6978Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M1.94549 6.87377C2.27514 6.54411 2.80962 6.54411 3.13928 6.87377L6.23458 9.96907L9.32988 6.87377C9.65954 6.54411 10.194 6.54411 10.5237 6.87377C10.8533 7.20343 10.8533 7.73791 10.5237 8.06756L6.23458 12.3567L1.94549 8.06756C1.61583 7.73791 1.61583 7.20343 1.94549 6.87377Z" fill="currentColor"></path></svg>
94
+
95
+ </button>
96
+
97
+
98
+ </div></li>
99
+ <li><hr class="h-5 w-0.5 border-none bg-gray-100 dark:bg-gray-800"></li>
100
+ <li><form action="/logout" method="POST" class="hidden"><input type="hidden" name="csrf" value="eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyMTIxMTIsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI4ZGQ4ZmVlNTdjOTUzZDBkZTU1ZTE1MWFjNTI1OGNiM2UzMTk4OWEyNjdhZmY0YzNkNjkwOWMxMzc2Y2U5NDg3In0="></form>
101
+ <div class="relative ml-2 w-[1.38rem] h-[1.38rem] ">
102
+ <button class="ml-auto rounded-full ring-2 group ring-yellow-500 ring-offset-1 focus:ring-yellow-600 hover:ring-offset-1 focus:ring-offset-1 focus:outline-hidden outline-hidden dark:ring-offset-gray-950 " type="button">
103
+
104
+ <div class="relative"><img alt="" class="h-[1.38rem] w-[1.38rem] overflow-hidden rounded-full" src="/avatars/1c3edd8d8475f326628b5d00b427202b.svg" crossorigin="anonymous">
105
+ <div class="bg-linear-to-br absolute -bottom-0.5 -right-0.5 z-20 h-2 w-2 rounded-full from-yellow-400 to-orange-500 ring-1 ring-white dark:ring-gray-950"></div></div>
106
+
107
+ </button>
108
+
109
+
110
+ </div></li></ul></nav></div></header></div>
111
+
112
+
113
+
114
+ <div class="SVELTE_HYDRATER contents" data-target="SSOBanner" data-props="{&quot;organizations&quot;:[]}"></div>
115
+
116
+
117
+
118
+ <main class="flex flex-1 flex-col"><div class="SVELTE_HYDRATER contents" data-target="SpaceHeader" data-props="{&quot;activeTab&quot;:&quot;files&quot;,&quot;authLight&quot;:{&quot;csrfToken&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyMTIxMTIsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI4ZGQ4ZmVlNTdjOTUzZDBkZTU1ZTE1MWFjNTI1OGNiM2UzMTk4OWEyNjdhZmY0YzNkNjkwOWMxMzc2Y2U5NDg3In0=&quot;,&quot;hasHfLevelAccess&quot;:false,&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;requiresSSO&quot;:false,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;numUsers&quot;:2545}],&quot;user&quot;:&quot;papaduvalier&quot;,&quot;canPost&quot;:false,&quot;canHaveBilling&quot;:true,&quot;canCreateOrg&quot;:true,&quot;theme&quot;:&quot;light&quot;,&quot;notifications&quot;:{&quot;org_suggestions&quot;:false,&quot;discussions_watched&quot;:false,&quot;org_suggestions_to_create&quot;:false},&quot;hardwareItems&quot;:[],&quot;hardwareItemsPrivate&quot;:false,&quot;usage&quot;:{&quot;storage&quot;:{&quot;summary&quot;:{&quot;space&quot;:{&quot;used&quot;:90810888,&quot;usedPrivate&quot;:90810888,&quot;usedPublic&quot;:0,&quot;count&quot;:38},&quot;model&quot;:{&quot;used&quot;:5449365907,&quot;usedPrivate&quot;:5449365907,&quot;usedPublic&quot;:0,&quot;count&quot;:1},&quot;dataset&quot;:{&quot;used&quot;:57858,&quot;usedPrivate&quot;:57858,&quot;usedPublic&quot;:0,&quot;count&quot;:1}},&quot;used&quot;:5540234653,&quot;count&quot;:40,&quot;limit&quot;:100000000000,&quot;usedPrivate&quot;:5540234653,&quot;usedPublic&quot;:0,&quot;historicalGrant&quot;:5540234653},&quot;inferenceApi&quot;:{&quot;used&quot;:0,&quot;limit&quot;:1000,&quot;duration&quot;:86400,&quot;renewal&quot;:86400,&quot;lastUpdated&quot;:&quot;2025-02-04T11:15:21.099Z&quot;},&quot;zeroGpu&quot;:{&quot;base&quot;:300,&quot;current&quot;:300,&quot;lastUpdated&quot;:&quot;2025-04-14T17:29:52.663Z&quot;},&quot;inference&quot;:{&quot;usedNanoUsd&quot;:0,&quot;numRequests&quot;:0,&quot;providerDetails&quot;:[],&quot;periodEnd&quot;:&quot;2025-04-30T23:59:59.999Z&quot;,&quot;periodStart&quot;:&quot;2025-04-01T00:00:00.000Z&quot;,&quot;includedNanoUsd&quot;:100000000,&quot;limitNanoUsd&quot;:100000000,&quot;lastUpdated&quot;:&quot;2025-04-14T17:29:52.663Z&quot;}},&quot;welcomeLinks&quot;:[]}},&quot;author&quot;:{&quot;_id&quot;:&quot;647c884e1f878439e2fe9b80&quot;,&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;fullname&quot;:&quot;papa duvalier&quot;,&quot;name&quot;:&quot;papaduvalier&quot;,&quot;type&quot;:&quot;user&quot;,&quot;isPro&quot;:false,&quot;isHf&quot;:false,&quot;isHfAdmin&quot;:false,&quot;isMod&quot;:false,&quot;followerCount&quot;:1},&quot;canDisable&quot;:false,&quot;canReadRepoSettings&quot;:true,&quot;canWriteRepoSettings&quot;:true,&quot;discussionsStats&quot;:{&quot;closed&quot;:0,&quot;open&quot;:0,&quot;total&quot;:0},&quot;query&quot;:{},&quot;space&quot;:{&quot;author&quot;:&quot;papaduvalier&quot;,&quot;colorFrom&quot;:&quot;yellow&quot;,&quot;colorTo&quot;:&quot;red&quot;,&quot;cardData&quot;:{&quot;title&quot;:&quot;Open Webui&quot;,&quot;emoji&quot;:&quot;⚡&quot;,&quot;colorFrom&quot;:&quot;yellow&quot;,&quot;colorTo&quot;:&quot;red&quot;,&quot;sdk&quot;:&quot;docker&quot;,&quot;pinned&quot;:false,&quot;license&quot;:&quot;mit&quot;},&quot;createdAt&quot;:&quot;2024-04-13T06:58:23.000Z&quot;,&quot;emoji&quot;:&quot;⚡&quot;,&quot;discussionsDisabled&quot;:true,&quot;duplicationDisabled&quot;:false,&quot;id&quot;:&quot;papaduvalier/open-webui&quot;,&quot;isLikedByUser&quot;:false,&quot;watched&quot;:{&quot;isWatching&quot;:true,&quot;isMuted&quot;:false,&quot;mode&quot;:&quot;global&quot;},&quot;lastModified&quot;:&quot;2025-04-14T17:07:25.000Z&quot;,&quot;likes&quot;:0,&quot;pinned&quot;:false,&quot;private&quot;:true,&quot;gated&quot;:false,&quot;repoType&quot;:&quot;space&quot;,&quot;subdomain&quot;:&quot;papaduvalier-open-webui&quot;,&quot;sdk&quot;:&quot;docker&quot;,&quot;title&quot;:&quot;Open Webui&quot;,&quot;originSpace&quot;:{&quot;name&quot;:&quot;vilarin/open-webui&quot;,&quot;author&quot;:{&quot;_id&quot;:&quot;642827944fe87caede802784&quot;,&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/642827944fe87caede802784/a7s3Ub9Cy6-PuuaX8wwXm.png&quot;,&quot;fullname&quot;:&quot;VILARIN&quot;,&quot;name&quot;:&quot;vilarin&quot;,&quot;type&quot;:&quot;user&quot;,&quot;isPro&quot;:false,&quot;isHf&quot;:false,&quot;isHfAdmin&quot;:false,&quot;isMod&quot;:false,&quot;followerCount&quot;:80}},&quot;runtime&quot;:{&quot;stage&quot;:&quot;BUILD_ERROR&quot;,&quot;hardware&quot;:{&quot;current&quot;:null,&quot;requested&quot;:&quot;cpu-upgrade&quot;},&quot;storage&quot;:&quot;medium&quot;,&quot;gcTimeout&quot;:900,&quot;errorMessage&quot;:&quot;Job failed with exit code: 137&quot;,&quot;replicas&quot;:{&quot;requested&quot;:1},&quot;devMode&quot;:false,&quot;domains&quot;:[{&quot;domain&quot;:&quot;papaduvalier-open-webui.hf.space&quot;,&quot;stage&quot;:&quot;READY&quot;}]},&quot;iframe&quot;:{&quot;embedSrc&quot;:&quot;https://papaduvalier-open-webui.hf.space&quot;,&quot;src&quot;:&quot;https://papaduvalier-open-webui.hf.space&quot;},&quot;secrets&quot;:[{&quot;key&quot;:&quot;DATA_DIR&quot;,&quot;description&quot;:&quot;Backend data directory&quot;,&quot;updatedAt&quot;:&quot;2024-06-07T07:16:33.987Z&quot;},{&quot;key&quot;:&quot;OPENAI_API_KEYS&quot;,&quot;description&quot;:&quot;Groq&quot;,&quot;updatedAt&quot;:&quot;2024-06-05T10:22:37.031Z&quot;},{&quot;key&quot;:&quot;ORIN_PASSWORD&quot;,&quot;updatedAt&quot;:&quot;2024-06-07T09:37:23.977Z&quot;},{&quot;key&quot;:&quot;WEBUI_NAME&quot;,&quot;description&quot;:&quot;startup name&quot;,&quot;updatedAt&quot;:&quot;2024-06-05T10:22:37.032Z&quot;},{&quot;key&quot;:&quot;WEBUI_SECRET_KEY&quot;,&quot;updatedAt&quot;:&quot;2024-06-07T09:32:50.110Z&quot;},{&quot;key&quot;:&quot;OPENWEATHER_API_KEY&quot;,&quot;description&quot;:&quot;get weather for a city or region&quot;,&quot;updatedAt&quot;:&quot;2024-06-14T09:07:38.144Z&quot;},{&quot;key&quot;:&quot;OLLAMA_MODELS&quot;,&quot;description&quot;:&quot;where ollama should store models&quot;,&quot;updatedAt&quot;:&quot;2024-07-05T09:46:56.692Z&quot;},{&quot;key&quot;:&quot;HF_HOME&quot;,&quot;description&quot;:&quot;huggingface home, make persistent&quot;,&quot;updatedAt&quot;:&quot;2024-07-03T09:34:21.701Z&quot;}],&quot;variables&quot;:[{&quot;key&quot;:&quot;ENV&quot;,&quot;value&quot;:&quot;prod&quot;},{&quot;key&quot;:&quot;PORT&quot;,&quot;value&quot;:&quot;7860&quot;},{&quot;key&quot;:&quot;TRANSFORMERS_CACHE&quot;,&quot;value&quot;:&quot;/app/cache&quot;},{&quot;key&quot;:&quot;SCARF_NO_ANALYTICS&quot;,&quot;value&quot;:&quot;true&quot;},{&quot;key&quot;:&quot;DO_NOT_TRACK&quot;,&quot;value&quot;:&quot;true&quot;},{&quot;key&quot;:&quot;OLLAMA_BASE_URLS&quot;,&quot;value&quot;:&quot;&quot;,&quot;updatedAt&quot;:&quot;2024-07-05T09:32:13.076Z&quot;,&quot;description&quot;:&quot;added base URLs&quot;},{&quot;key&quot;:&quot;ENABLE_SIGNUP&quot;,&quot;value&quot;:&quot;True&quot;},{&quot;key&quot;:&quot;OPENAI_API_BASE_URLS&quot;,&quot;value&quot;:&quot;https://api.groq.com/openai/v1;https://openrouter.ai/api/v1&quot;,&quot;updatedAt&quot;:&quot;2024-04-24T16:26:37.422Z&quot;,&quot;description&quot;:&quot;various base urls&quot;},{&quot;key&quot;:&quot;USE_OLLAMA_DOCKER&quot;,&quot;value&quot;:&quot;false&quot;,&quot;updatedAt&quot;:&quot;2024-07-05T09:32:30.626Z&quot;,&quot;description&quot;:&quot;Use internal Ollama&quot;},{&quot;key&quot;:&quot;DEFAULT_MODELS&quot;,&quot;value&quot;:&quot;llama3:latest&quot;,&quot;updatedAt&quot;:&quot;2024-06-30T10:39:37.559Z&quot;,&quot;description&quot;:&quot;default models&quot;}],&quot;sse&quot;:{&quot;url&quot;:&quot;https://api.hf.space/v1/papaduvalier/open-webui&quot;,&quot;jwt&quot;:&quot;eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2NDdjODg0ZTFmODc4NDM5ZTJmZTliODAiLCJ1c2VyIjoicGFwYWR1dmFsaWVyIn0sImlhdCI6MTc0NDY1MTgxMiwic3ViIjoiL3NwYWNlcy9wYXBhZHV2YWxpZXIvb3Blbi13ZWJ1aSIsImV4cCI6MTc0NDczODIxMiwiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.ogCn_npGxmXnJP7LRN9TTq-Yy9S17BCdx3iBGPj4KdMvDq-cgUD6xBiRD4hsBH026yEwGUY3JSnrd6X19lIoCw&quot;},&quot;dockerJwt&quot;:&quot;eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2NDdjODg0ZTFmODc4NDM5ZTJmZTliODAiLCJ1c2VyIjoicGFwYWR1dmFsaWVyIn0sImlhdCI6MTc0NDY1MTgxMiwic3ViIjoiL3NwYWNlcy9wYXBhZHV2YWxpZXIvb3Blbi13ZWJ1aSIsImV4cCI6MTc0NDczODIxMiwiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.ogCn_npGxmXnJP7LRN9TTq-Yy9S17BCdx3iBGPj4KdMvDq-cgUD6xBiRD4hsBH026yEwGUY3JSnrd6X19lIoCw&quot;,&quot;linkedModels&quot;:[{&quot;author&quot;:&quot;google&quot;,&quot;authorData&quot;:{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/5dd96eb166059660ed1ee413/WtA3YYitedOr9n02eHfJe.png&quot;,&quot;fullname&quot;:&quot;Google&quot;,&quot;name&quot;:&quot;google&quot;,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;isHfAdmin&quot;:false,&quot;isMod&quot;:false,&quot;isEnterprise&quot;:false,&quot;followerCount&quot;:11630},&quot;downloads&quot;:374311,&quot;gated&quot;:&quot;manual&quot;,&quot;id&quot;:&quot;google/gemma-2-9b-it&quot;,&quot;availableInferenceProviders&quot;:[{&quot;name&quot;:&quot;hf-inference&quot;,&quot;modelStatus&quot;:&quot;live&quot;,&quot;providerStatus&quot;:&quot;live&quot;,&quot;providerId&quot;:&quot;google/gemma-2-9b-it&quot;},{&quot;name&quot;:&quot;nebius&quot;,&quot;modelStatus&quot;:&quot;live&quot;,&quot;providerStatus&quot;:&quot;live&quot;,&quot;providerId&quot;:&quot;google/gemma-2-9b-it-fast&quot;},{&quot;name&quot;:&quot;novita&quot;,&quot;modelStatus&quot;:&quot;live&quot;,&quot;providerStatus&quot;:&quot;live&quot;,&quot;providerId&quot;:&quot;google/gemma-2-9b-it&quot;}],&quot;lastModified&quot;:&quot;2024-08-27T19:41:49.000Z&quot;,&quot;likes&quot;:703,&quot;pipeline_tag&quot;:&quot;text-generation&quot;,&quot;private&quot;:false,&quot;repoType&quot;:&quot;model&quot;,&quot;isLikedByUser&quot;:false,&quot;widgetOutputUrls&quot;:[]}],&quot;linkedDatasets&quot;:[],&quot;linkedCollections&quot;:[],&quot;sha&quot;:&quot;347a392b373b54666c2f2a80f53e53f29c8e1cb7&quot;,&quot;hasBlockedOids&quot;:false,&quot;region&quot;:&quot;us&quot;,&quot;xetEnabled&quot;:false},&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;fullname&quot;:&quot;papa duvalier&quot;,&quot;user&quot;:&quot;papaduvalier&quot;,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;userRole&quot;:&quot;contributor&quot;,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;isEnterprise&quot;:false,&quot;numUsers&quot;:2545,&quot;canPay&quot;:false}],&quot;signup&quot;:{&quot;github&quot;:&quot;hblink&quot;},&quot;isHf&quot;:false,&quot;isMod&quot;:false,&quot;type&quot;:&quot;user&quot;,&quot;canPay&quot;:true,&quot;spacesAvailableFlavors&quot;:[&quot;cpu-basic&quot;,&quot;cpu-upgrade&quot;,&quot;zero-a10g&quot;,&quot;t4-small&quot;,&quot;t4-medium&quot;,&quot;l4x1&quot;,&quot;l4x4&quot;,&quot;l40sx1&quot;,&quot;l40sx4&quot;,&quot;l40sx8&quot;,&quot;a10g-small&quot;,&quot;a10g-large&quot;,&quot;a10g-largex2&quot;,&quot;a10g-largex4&quot;,&quot;a100-large&quot;],&quot;canPost&quot;:false},&quot;sessionUuid&quot;:&quot;TwDWHnzOrMoK7rgYbNw-a&quot;}">
119
+
120
+ <header class="bg-linear-to-t border-b border-gray-100 pt-4 xl:pt-0 from-gray-50-to-white via-white dark:via-gray-950"><div class="container relative flex flex-col xl:flex-row"><h1 class="flex flex-wrap items-center max-md:leading-tight gap-y-1 text-lg xl:flex-none"><a href="/spaces" class="group flex items-center"><svg class="sm:mr-1 false text-gray-400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M7.80914 18.7462V24.1907H13.2536V18.7462H7.80914Z" fill="#FF3270"></path><path d="M18.7458 18.7462V24.1907H24.1903V18.7462H18.7458Z" fill="#861FFF"></path><path d="M7.80914 7.80982V13.2543H13.2536V7.80982H7.80914Z" fill="#097EFF"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M4 6.41775C4 5.08246 5.08246 4 6.41775 4H14.6457C15.7626 4 16.7026 4.75724 16.9802 5.78629C18.1505 4.67902 19.7302 4 21.4685 4C25.0758 4 28.0003 6.92436 28.0003 10.5317C28.0003 12.27 27.3212 13.8497 26.2139 15.02C27.243 15.2977 28.0003 16.2376 28.0003 17.3545V25.5824C28.0003 26.9177 26.9177 28.0003 25.5824 28.0003H17.0635H14.9367H6.41775C5.08246 28.0003 4 26.9177 4 25.5824V15.1587V14.9367V6.41775ZM7.80952 7.80952V13.254H13.254V7.80952H7.80952ZM7.80952 24.1907V18.7462H13.254V24.1907H7.80952ZM18.7462 24.1907V18.7462H24.1907V24.1907H18.7462ZM18.7462 10.5317C18.7462 9.0283 19.9651 7.80952 21.4685 7.80952C22.9719 7.80952 24.1907 9.0283 24.1907 10.5317C24.1907 12.0352 22.9719 13.254 21.4685 13.254C19.9651 13.254 18.7462 12.0352 18.7462 10.5317Z" fill="black"></path><path d="M21.4681 7.80982C19.9647 7.80982 18.7458 9.02861 18.7458 10.5321C18.7458 12.0355 19.9647 13.2543 21.4681 13.2543C22.9715 13.2543 24.1903 12.0355 24.1903 10.5321C24.1903 9.02861 22.9715 7.80982 21.4681 7.80982Z" fill="#FFD702"></path></svg>
121
+ <span class="mr-2.5 font-semibold text-gray-400 group-hover:text-gray-500 max-sm:hidden">Spaces:</span></a>
122
+ <hr class="mx-1.5 h-2 translate-y-px rounded-sm border-r dark:border-gray-600 sm:hidden">
123
+ <div class="group flex flex-none items-center"><div class="relative mr-1 flex items-center"><p class="absolute bottom-4 left-0 hidden select-none items-center whitespace-nowrap text-xs text-gray-400 group-hover:flex md:bottom-[-1.1rem] md:pr-4 md:pt-1"><svg class="flex-none mr-1 text-gray-600 dark:text-gray-200" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 32 26" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M18.5769 0.524814C18.5769 0.234967 18.8126 0 19.1034 0C26.2306 0 32.0001 5.81162 32.0001 12.9704C32.0001 20.1292 26.2306 25.9408 19.1034 25.9408C18.8126 25.9408 18.5769 25.7058 18.5769 25.416C18.5769 25.1261 18.8126 24.8912 19.1034 24.8912C25.64 24.8912 30.9472 19.5586 30.9472 12.9704C30.9472 6.38217 25.64 1.04963 19.1034 1.04963C18.8126 1.04963 18.5769 0.81466 18.5769 0.524814Z" fill="currentcolor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M13.0034 26C20.1849 26 26.0067 20.1965 26.0067 13.0375C26.0067 5.87847 20.1849 0.0749512 13.0034 0.0749512C5.82181 0.0749512 0 5.87847 0 13.0375C0 20.1965 5.82181 26 13.0034 26ZM13.0656 7.51757C13.6455 7.51757 14.1155 7.98615 14.1155 8.56418V12.0529H17.6152C18.1951 12.0529 18.6651 12.5215 18.6651 13.0995C18.6651 13.6775 18.1951 14.1461 17.6152 14.1461H14.1155V17.6348C14.1155 18.2129 13.6455 18.6815 13.0656 18.6815C12.4857 18.6815 12.0157 18.2129 12.0157 17.6348V14.1461H8.51598C7.93613 14.1461 7.46606 13.6775 7.46606 13.0995C7.46606 12.5215 7.93613 12.0529 8.51598 12.0529H12.0157V8.56418C12.0157 7.98615 12.4857 7.51757 13.0656 7.51757Z" fill="currentcolor" fill-opacity="0.65"></path></svg>
124
+ Duplicated from 
125
+ <a href="/spaces/vilarin/open-webui" class="font-mono text-[0.65rem] text-gray-500 underline hover:text-gray-600">vilarin/open-webui</a></p>
126
+ <img alt="" class="w-3.5 h-3.5 rounded-full w-3! h-3! flex-none -mr-[0.115rem] group-hover:mr-[0.115rem] transition-all flex-none" src="https://cdn-avatars.huggingface.co/v1/production/uploads/642827944fe87caede802784/a7s3Ub9Cy6-PuuaX8wwXm.png" crossorigin="anonymous">
127
+
128
+
129
+
130
+ <span class="inline-block "><span class="contents"><a href="/papaduvalier" class="text-gray-400 hover:text-blue-600"><img alt="" class="w-3.5 h-3.5 rounded-full ring-2 dark:ring-gray-900 ring-white flex-none" src="/avatars/1c3edd8d8475f326628b5d00b427202b.svg" crossorigin="anonymous"></a></span>
131
+ </span></div>
132
+
133
+
134
+ <span class="inline-block "><span class="contents"><a href="/papaduvalier" class="text-gray-400 hover:text-blue-600">papaduvalier</a></span>
135
+ </span>
136
+ <div class="mx-0.5 text-gray-300">/</div></div>
137
+
138
+ <div class="max-w-full xl:flex xl:min-w-0 xl:flex-nowrap xl:items-center xl:gap-x-1"><a class="break-words font-mono font-semibold hover:text-blue-600 text-[1.07rem] xl:truncate" href="/spaces/papaduvalier/open-webui">open-webui</a>
139
+ <button class="relative text-xs mr-3 focus:outline-hidden inline-flex cursor-pointer items-center text-sm mx-0.5 text-gray-600 " title="Copy space name to clipboard" type="button"><svg class="" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg>
140
+
141
+ </button></div>
142
+ <div class="inline-flex h-5 items-center rounded-sm border border-gray-200 px-1.5 text-xs leading-none text-gray-500 mr-2">private
143
+ </div>
144
+
145
+
146
+
147
+
148
+
149
+ <span class="inline-block "><span class="contents"><div class="cursor-pointer select-none overflow-hidden font-mono text-xs shrink-0 mr-2 flex items-center rounded-lg border leading-none dark:bg-gray-900
150
+ border-red-100
151
+ text-red-700 dark:text-red-500"><div class="inline-flex items-center px-2 py-[0.32rem] dark:bg-gray-900 border-red-100 bg-red-50 hover:bg-red-100/70 hover:text-red-800 dark:hover:text-red-400"><svg class="mr-1" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M8 2.71A5.29 5.29 0 1 0 8 13.3 5.29 5.29 0 0 0 8 2.7Zm0 9.68a4.4 4.4 0 0 1-3.4-7.16l6.17 6.17c-.78.64-1.76 1-2.77 1Zm3.4-1.62L5.23 4.6a4.4 4.4 0 0 1 6.17 6.17"></path></svg>
152
+ Build error
153
+ </div>
154
+ </div></span>
155
+ </span>
156
+
157
+ <button class="focus:outline-hidden mr-2 inline-flex items-center overflow-hidden whitespace-nowrap rounded-md border bg-white px-1.5 py-1 text-sm leading-none text-gray-500 hover:bg-gray-50 focus:bg-gray-100 dark:hover:bg-gray-900 dark:focus:bg-gray-800"><svg class="2xl:mr-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M4 6h18v2H4zm0 6h18v2H4zm0 6h12v2H4zm17 0l7 5l-7 5V18z"></path></svg><span class="hidden 2xl:block">Logs</span></button>
158
+
159
+
160
+
161
+
162
+
163
+ <div class="sm:hidden"><div class="relative ">
164
+ <button class="btn px-1 py-1 text-sm translate-y-0 " type="button">
165
+
166
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="p-px" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg>
167
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" class="absolute right-[-0.25rem] bottom-[-0.25rem] rounded-xs bg-gray-50 p-px text-[0.85rem] text-gray-500 dark:bg-gray-925" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M7.975 3.489a.438.438 0 0 1 0 .618L4.262 7.82a.416.416 0 0 1-.307.126.427.427 0 0 1-.311-.126.438.438 0 0 1 0-.618L7.357 3.49a.438.438 0 0 1 .618 0ZM6.427 8.132 4.88 9.675a2.17 2.17 0 0 1-3.09 0 2.188 2.188 0 0 1 0-3.09l1.542-1.548a.437.437 0 0 0-.618-.619L1.166 5.966a3.063 3.063 0 0 0 4.332 4.332L7.046 8.75a.438.438 0 0 0-.619-.618Zm4.026-7.121a3.063 3.063 0 0 0-4.332 0L4.573 2.559a.438.438 0 0 0 .618.618L6.74 1.635a2.171 2.171 0 0 1 3.09 0 2.188 2.188 0 0 1 0 3.09L8.287 6.273a.432.432 0 0 0 0 .618.421.421 0 0 0 .475.097.438.438 0 0 0 .143-.097l1.548-1.548a3.068 3.068 0 0 0 0-4.332Z"></path></svg>
168
+
169
+ </button>
170
+
171
+
172
+ </div></div>
173
+
174
+
175
+
176
+
177
+
178
+ </h1>
179
+
180
+
181
+ <div class="flex flex-col-reverse gap-x-2 sm:flex-row sm:items-center sm:justify-between xl:ml-auto"><div class="-mb-px flex h-12 items-center overflow-x-auto overflow-y-hidden sm:h-[3.25rem]">
182
+ <a class="tab-alternate" href="/spaces/papaduvalier/open-webui"><svg class="mr-1.5 text-gray-400 flex-none" style="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path class="uim-quaternary" d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z" opacity=".25" fill="currentColor"></path><path class="uim-tertiary" d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z" fill="currentColor"></path></svg>
183
+ App
184
+
185
+
186
+
187
+ </a><a class="tab-alternate active" href="/spaces/papaduvalier/open-webui/tree/main"><svg class="mr-1.5 text-gray-400 flex-none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path class="uim-tertiary" d="M21 19h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-8h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0 4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M9 19a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v12a1 1 0 0 1-1 1zm-6-4.333a1 1 0 0 1-.64-1.769L3.438 12l-1.078-.898a1 1 0 0 1 1.28-1.538l2 1.667a1 1 0 0 1 0 1.538l-2 1.667a.999.999 0 0 1-.64.231z" fill="currentColor"></path></svg>
188
+ <span class="xl:hidden">Files</span>
189
+ <span class="hidden xl:inline">Files</span>
190
+
191
+
192
+
193
+ </a><a class="tab-alternate" href="/spaces/papaduvalier/open-webui/settings"><svg class="opacity-50 dark:opacity-70 mr-1.5 text-gray-400 flex-none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 25 25" fill="currentColor"><path d="M13.0101 3C13.7157 3.0078 14.4184 3.09062 15.1077 3.24652C15.2543 3.2797 15.3871 3.35848 15.4874 3.47186C15.5877 3.58523 15.6506 3.72754 15.6672 3.8789L15.8306 5.36678C15.8537 5.57655 15.925 5.77791 16.0389 5.95464C16.1527 6.13137 16.3059 6.27854 16.4861 6.38432C16.6663 6.4901 16.8685 6.55153 17.0764 6.56367C17.2843 6.57581 17.4921 6.53831 17.6831 6.4542L19.0299 5.85495C19.1667 5.79391 19.3187 5.77743 19.4651 5.8078C19.6115 5.83818 19.745 5.9139 19.847 6.02449C20.8199 7.07789 21.5443 8.3412 21.9658 9.71937C22.01 9.8642 22.0087 10.0194 21.962 10.1634C21.9153 10.3074 21.8256 10.4332 21.7053 10.5232L20.5113 11.4158C20.3434 11.5408 20.2069 11.7041 20.1128 11.8925C20.0187 12.0809 19.9697 12.2891 19.9697 12.5003C19.9697 12.7114 20.0187 12.9196 20.1128 13.108C20.2069 13.2964 20.3434 13.4597 20.5113 13.5848L21.7062 14.4763C21.8269 14.5663 21.917 14.6922 21.9638 14.8364C22.0107 14.9806 22.0121 15.1361 21.9677 15.2812C21.546 16.6593 20.8216 17.9225 19.849 18.976C19.7471 19.0864 19.6141 19.162 19.4681 19.1926C19.3221 19.2231 19.1704 19.207 19.0338 19.1466L17.6812 18.5454C17.4904 18.4606 17.2827 18.4225 17.0748 18.4343C16.8668 18.446 16.6645 18.5072 16.4842 18.6129C16.3039 18.7185 16.1508 18.8658 16.037 19.0426C15.9233 19.2195 15.8523 19.421 15.8297 19.6308L15.6672 21.1177C15.6508 21.2674 15.5892 21.4084 15.4908 21.5212C15.3923 21.6341 15.2619 21.7133 15.1173 21.7482C13.7249 22.0839 12.2742 22.0839 10.8817 21.7482C10.7371 21.7133 10.6067 21.6341 10.5083 21.5212C10.4098 21.4084 10.3482 21.2674 10.3318 21.1177L10.1703 19.6328C10.1468 19.4235 10.0751 19.2227 9.96107 19.0465C9.84703 18.8704 9.69381 18.7238 9.51373 18.6186C9.33364 18.5134 9.13172 18.4525 8.92419 18.4408C8.71666 18.4291 8.50931 18.4669 8.31882 18.5512L6.9672 19.1514C6.83048 19.2121 6.67854 19.2283 6.53235 19.1978C6.38616 19.1672 6.25292 19.0915 6.15103 18.9809C5.17789 17.9263 4.45346 16.6616 4.03227 15.2821C3.98795 15.1371 3.98931 14.9816 4.03617 14.8374C4.08304 14.6931 4.17306 14.5673 4.29375 14.4773L5.48868 13.5848C5.65676 13.4599 5.79345 13.2966 5.88768 13.1082C5.9819 12.9198 6.031 12.7115 6.031 12.5003C6.031 12.289 5.9819 12.0808 5.88768 11.8923C5.79345 11.7039 5.65676 11.5407 5.48868 11.4158L4.29375 10.5252C4.17324 10.4351 4.0834 10.3092 4.03671 10.1649C3.99003 10.0207 3.98881 9.8653 4.03323 9.72034C4.45479 8.34219 5.17922 7.07889 6.15199 6.02547C6.25407 5.91487 6.38753 5.83915 6.53391 5.80878C6.6803 5.77841 6.83238 5.79488 6.96912 5.85593L8.31498 6.45517C8.5063 6.53923 8.71441 6.57664 8.92258 6.56439C9.13075 6.55214 9.33319 6.49057 9.51363 6.38462C9.69406 6.27868 9.84747 6.13132 9.96152 5.95438C10.0756 5.77744 10.1471 5.57585 10.1703 5.36581L10.3338 3.8789C10.3503 3.72724 10.4132 3.58462 10.5137 3.47103C10.6142 3.35745 10.7473 3.2786 10.8942 3.24555C11.5835 3.09062 12.2881 3.00877 13.0101 3ZM12.9986 9.57711C12.2337 9.57711 11.5001 9.88508 10.9593 10.4333C10.4184 10.9815 10.1146 11.725 10.1146 12.5003C10.1146 13.2755 10.4184 14.0191 10.9593 14.5672C11.5001 15.1154 12.2337 15.4234 12.9986 15.4234C13.7634 15.4234 14.497 15.1154 15.0378 14.5672C15.5787 14.0191 15.8825 13.2755 15.8825 12.5003C15.8825 11.725 15.5787 10.9815 15.0378 10.4333C14.497 9.88508 13.7634 9.57711 12.9986 9.57711Z"></path></svg>
194
+ Settings
195
+
196
+
197
+
198
+ </a></div>
199
+
200
+
201
+
202
+ <div class="hidden sm:block mt-2 lg:mt-0"><div class="relative ">
203
+ <button class="btn px-1 py-1 text-base translate-y-px " type="button">
204
+
205
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="p-0.5" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg>
206
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" class="absolute right-[-0.18rem] bottom-[-0.18rem] rounded-xs bg-gray-50 p-px text-[0.85rem] text-gray-500 dark:bg-gray-925" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M7.975 3.489a.438.438 0 0 1 0 .618L4.262 7.82a.416.416 0 0 1-.307.126.427.427 0 0 1-.311-.126.438.438 0 0 1 0-.618L7.357 3.49a.438.438 0 0 1 .618 0ZM6.427 8.132 4.88 9.675a2.17 2.17 0 0 1-3.09 0 2.188 2.188 0 0 1 0-3.09l1.542-1.548a.437.437 0 0 0-.618-.619L1.166 5.966a3.063 3.063 0 0 0 4.332 4.332L7.046 8.75a.438.438 0 0 0-.619-.618Zm4.026-7.121a3.063 3.063 0 0 0-4.332 0L4.573 2.559a.438.438 0 0 0 .618.618L6.74 1.635a2.171 2.171 0 0 1 3.09 0 2.188 2.188 0 0 1 0 3.09L8.287 6.273a.432.432 0 0 0 0 .618.421.421 0 0 0 .475.097.438.438 0 0 0 .143-.097l1.548-1.548a3.068 3.068 0 0 0 0-4.332Z"></path></svg>
207
+
208
+ </button>
209
+
210
+
211
+ </div></div>
212
+
213
+
214
+
215
+
216
+
217
+
218
+ </div></div></header>
219
+
220
+
221
+
222
+
223
+
224
+
225
+ <div class="spinner-overlay fixed inset-0 z-50 flex h-full w-full items-center justify-center overflow-y-auto bg-gray-500 text-white opacity-80 hidden"><svg class="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg>
226
+ <span>Fetching metadata from the HF Docker repository...</span></div>
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
+ </div>
255
+
256
+ <div class="container relative flex flex-col md:grid md:space-y-0 w-full md:grid-cols-12 space-y-4 md:gap-6 mb-16"><section class="pt-8 border-gray-100 col-span-full"><div class="SVELTE_HYDRATER contents" data-target="ViewerHeader" data-props="{&quot;authLight&quot;:{&quot;csrfToken&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyMTIxMTIsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI4ZGQ4ZmVlNTdjOTUzZDBkZTU1ZTE1MWFjNTI1OGNiM2UzMTk4OWEyNjdhZmY0YzNkNjkwOWMxMzc2Y2U5NDg3In0=&quot;,&quot;hasHfLevelAccess&quot;:false,&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;requiresSSO&quot;:false,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;numUsers&quot;:2545}],&quot;user&quot;:&quot;papaduvalier&quot;,&quot;canPost&quot;:false,&quot;canHaveBilling&quot;:true,&quot;canCreateOrg&quot;:true,&quot;theme&quot;:&quot;light&quot;,&quot;notifications&quot;:{&quot;org_suggestions&quot;:false,&quot;discussions_watched&quot;:false,&quot;org_suggestions_to_create&quot;:false},&quot;hardwareItems&quot;:[],&quot;hardwareItemsPrivate&quot;:false,&quot;usage&quot;:{&quot;storage&quot;:{&quot;summary&quot;:{&quot;space&quot;:{&quot;used&quot;:90810888,&quot;usedPrivate&quot;:90810888,&quot;usedPublic&quot;:0,&quot;count&quot;:38},&quot;model&quot;:{&quot;used&quot;:5449365907,&quot;usedPrivate&quot;:5449365907,&quot;usedPublic&quot;:0,&quot;count&quot;:1},&quot;dataset&quot;:{&quot;used&quot;:57858,&quot;usedPrivate&quot;:57858,&quot;usedPublic&quot;:0,&quot;count&quot;:1}},&quot;used&quot;:5540234653,&quot;count&quot;:40,&quot;limit&quot;:100000000000,&quot;usedPrivate&quot;:5540234653,&quot;usedPublic&quot;:0,&quot;historicalGrant&quot;:5540234653},&quot;inferenceApi&quot;:{&quot;used&quot;:0,&quot;limit&quot;:1000,&quot;duration&quot;:86400,&quot;renewal&quot;:86400,&quot;lastUpdated&quot;:&quot;2025-02-04T11:15:21.099Z&quot;},&quot;zeroGpu&quot;:{&quot;base&quot;:300,&quot;current&quot;:300,&quot;lastUpdated&quot;:&quot;2025-04-14T17:29:52.663Z&quot;},&quot;inference&quot;:{&quot;usedNanoUsd&quot;:0,&quot;numRequests&quot;:0,&quot;providerDetails&quot;:[],&quot;periodEnd&quot;:&quot;2025-04-30T23:59:59.999Z&quot;,&quot;periodStart&quot;:&quot;2025-04-01T00:00:00.000Z&quot;,&quot;includedNanoUsd&quot;:100000000,&quot;limitNanoUsd&quot;:100000000,&quot;lastUpdated&quot;:&quot;2025-04-14T17:29:52.663Z&quot;}},&quot;welcomeLinks&quot;:[]}},&quot;context&quot;:{&quot;repo&quot;:{&quot;name&quot;:&quot;papaduvalier/open-webui&quot;,&quot;type&quot;:&quot;space&quot;},&quot;rev&quot;:&quot;main&quot;,&quot;path&quot;:&quot;webui.db&quot;,&quot;subpaths&quot;:[{&quot;dir&quot;:&quot;webui.db&quot;}]},&quot;refs&quot;:{&quot;branches&quot;:[{&quot;name&quot;:&quot;main&quot;,&quot;ref&quot;:&quot;refs/heads/main&quot;,&quot;targetCommit&quot;:&quot;347a392b373b54666c2f2a80f53e53f29c8e1cb7&quot;}],&quot;tags&quot;:[],&quot;converts&quot;:[]},&quot;view&quot;:&quot;blob&quot;}"><header class="flex flex-wrap items-center justify-start pb-2 md:justify-end lg:flex-nowrap"><div class="grow max-md:flex max-md:w-full max-md:items-start max-md:justify-between"><div class="relative mr-4 flex min-w-0 basis-auto flex-wrap items-center md:grow md:basis-full lg:basis-auto lg:flex-nowrap"><div class="relative mr-3 mb-2">
257
+ <button class="text-sm md:text-base btn w-full cursor-pointer text-sm" type="button">
258
+ <svg class="mr-1.5 text-gray-700 dark:text-gray-400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" style="transform: rotate(360deg);"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24C9.25 16.7 10 17.76 10 19a3 3 0 0 1-3 3a3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5a3 3 0 0 1 3-3a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12c2.67 0 3.56-1.34 3.85-2.23A3.006 3.006 0 0 1 14 7a3 3 0 0 1 3-3a3 3 0 0 1 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1M7 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m10 2a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1z" fill="currentColor"></path></svg>
259
+ main
260
+ <svg class="-mr-1 text-gray-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path d="M16.293 9.293L12 13.586L7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z" fill="currentColor"></path></svg></button>
261
+
262
+
263
+ </div>
264
+ <div class="relative mb-2 flex flex-wrap items-center"><a class="truncate text-gray-800 hover:underline" href="/spaces/papaduvalier/open-webui/tree/main">open-webui</a>
265
+ <span class="mx-1 text-gray-300">/</span>
266
+ <span class="dark:text-gray-300">webui.db</span>
267
+ <button class="relative text-xs ml-2 focus:outline-hidden inline-flex cursor-pointer items-center text-sm mx-0.5 text-gray-600 " title="Copy path" type="button"><svg class="" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg>
268
+
269
+ </button></div></div>
270
+ </div>
271
+
272
+ </header></div>
273
+ <div class="SVELTE_HYDRATER contents" data-target="LastCommit" data-props="{&quot;commitLast&quot;:{&quot;date&quot;:&quot;2024-04-02T14:08:36.000Z&quot;,&quot;verified&quot;:&quot;verified&quot;,&quot;subject&quot;:&quot;Upload webui.db&quot;,&quot;authors&quot;:[{&quot;_id&quot;:&quot;642827944fe87caede802784&quot;,&quot;avatar&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/642827944fe87caede802784/a7s3Ub9Cy6-PuuaX8wwXm.png&quot;,&quot;isHf&quot;:false,&quot;user&quot;:&quot;vilarin&quot;}],&quot;commit&quot;:{&quot;id&quot;:&quot;bcb8ee2a2b00acaa4ffe39032651938e9bf9627d&quot;,&quot;parentIds&quot;:[&quot;1dca8284b551a3461357798e34f9fe7ba6efe293&quot;]},&quot;title&quot;:&quot;Upload webui.db&quot;},&quot;repo&quot;:{&quot;name&quot;:&quot;papaduvalier/open-webui&quot;,&quot;type&quot;:&quot;space&quot;}}"><div class="from-gray-100-to-white bg-linear-to-t flex flex-wrap items-baseline rounded-t-lg border border-b-0 px-3 py-2 dark:border-gray-800"><img class="mr-2.5 mt-0.5 h-4 w-4 self-center rounded-full" alt="vilarin's picture" src="https://cdn-avatars.huggingface.co/v1/production/uploads/642827944fe87caede802784/a7s3Ub9Cy6-PuuaX8wwXm.png">
274
+ <div class="mr-4 flex flex-none items-center truncate"><a class="hover:underline" href="/vilarin">vilarin
275
+ </a>
276
+
277
+ </div>
278
+ <div class="mr-4 truncate font-mono text-sm text-gray-500 hover:prose-a:underline"><!-- HTML_TAG_START -->Upload webui.db<!-- HTML_TAG_END --></div>
279
+ <a class="rounded-sm border bg-gray-50 px-1.5 text-sm hover:underline dark:border-gray-800 dark:bg-gray-900" href="/spaces/papaduvalier/open-webui/commit/bcb8ee2a2b00acaa4ffe39032651938e9bf9627d">bcb8ee2</a>
280
+ <span class="mx-2 text-green-500 dark:text-green-600 px-1.5 border-green-100 dark:border-green-800 rounded-full border text-xs uppercase" title="This commit is signed and the signature is verified">verified</span>
281
+ <time class="ml-auto hidden flex-none truncate pl-2 text-gray-500 dark:text-gray-400 lg:block" datetime="2024-04-02T14:08:36" title="Tue, 02 Apr 2024 14:08:36 GMT">about 1 year ago</time></div></div>
282
+ <div class="relative flex flex-wrap items-center border px-3 py-1.5 text-sm text-gray-800 dark:border-gray-800 dark:bg-gray-900 ">
283
+ <a class="my-1 mr-4 flex items-center hover:underline " download="" href="/spaces/papaduvalier/open-webui/resolve/main/webui.db?download=true"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M26 24v4H6v-4H4v4a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-4zm0-10l-1.41-1.41L17 20.17V2h-2v18.17l-7.59-7.58L6 14l10 10l10-10z"></path></svg>
284
+ download
285
+ </a><div class="SVELTE_HYDRATER contents" data-target="CopyButton" data-props="{&quot;value&quot;:&quot;https://huggingface.co/spaces/papaduvalier/open-webui/resolve/main/webui.db&quot;,&quot;style&quot;:&quot;blank&quot;,&quot;label&quot;:&quot;Copy download link&quot;,&quot;classNames&quot;:&quot;my-1 mr-4 flex items-center no-underline hover:underline&quot;}"><button class="relative my-1 mr-4 flex items-center no-underline hover:underline " title="Copy download link" type="button"><svg class="" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg>
286
+ <span class="ml-1.5 ">Copy download link</span>
287
+ </button></div><a class="my-1 mr-4 flex items-center hover:underline " href="/spaces/papaduvalier/open-webui/commits/main/webui.db"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" style="transform: rotate(360deg);"><path d="M16 4C9.383 4 4 9.383 4 16s5.383 12 12 12s12-5.383 12-12S22.617 4 16 4zm0 2c5.535 0 10 4.465 10 10s-4.465 10-10 10S6 21.535 6 16S10.465 6 16 6zm-1 2v9h7v-2h-5V8z" fill="currentColor"></path></svg>
288
+ history
289
+ </a><a class="my-1 mr-4 flex items-center hover:underline " href="/spaces/papaduvalier/open-webui/edit/main/webui.db"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M2 26h28v2H2z" fill="currentColor"></path><path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path></svg>
290
+ rename
291
+ </a><a class="my-1 mr-4 flex items-center hover:underline " href="/spaces/papaduvalier/open-webui/delete/main/webui.db"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M12 12h2v12h-2z" fill="currentColor"></path><path d="M18 12h2v12h-2z" fill="currentColor"></path><path d="M4 6v2h2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8h2V6zm4 22V8h16v20z" fill="currentColor"></path><path d="M12 2h8v2h-8z" fill="currentColor"></path></svg>
292
+ delete
293
+ </a>
294
+
295
+ <div class="mr-4 flex items-center"><div class="SVELTE_HYDRATER contents" data-target="ScanStatusBadge" data-props="{&quot;classNames&quot;:&quot;mr-2&quot;,&quot;scanStatus&quot;:{&quot;status&quot;:&quot;safe&quot;,&quot;protectAiScan&quot;:{&quot;status&quot;:&quot;unscanned&quot;},&quot;avScan&quot;:{&quot;status&quot;:&quot;safe&quot;},&quot;pickleImportScan&quot;:{&quot;status&quot;:&quot;unscanned&quot;,&quot;pickleImports&quot;:[]}},&quot;repo&quot;:{&quot;name&quot;:&quot;papaduvalier/open-webui&quot;,&quot;type&quot;:&quot;space&quot;},&quot;revision&quot;:&quot;main&quot;,&quot;filePath&quot;:&quot;webui.db&quot;,&quot;openByDefault&quot;:false}"><div class="sm:relative mr-2"><button class="flex h-[1.125rem] select-none items-center gap-0.5 rounded border pl-0.5 pr-0.5 text-xs leading-tight text-gray-400 hover:cursor-pointer text-gray-400 hover:border-gray-200 hover:bg-gray-50 hover:text-gray-500 dark:border-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200 "><svg class="flex-none" width="1em" height="1em" viewBox="0 0 22 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15.3634 10.3639C15.8486 10.8491 15.8486 11.6357 15.3634 12.1209L10.9292 16.5551C10.6058 16.8785 10.0814 16.8785 9.7579 16.5551L7.03051 13.8277C6.54532 13.3425 6.54532 12.5558 7.03051 12.0707C7.51569 11.5855 8.30234 11.5855 8.78752 12.0707L9.7579 13.041C10.0814 13.3645 10.6058 13.3645 10.9292 13.041L13.6064 10.3639C14.0916 9.8787 14.8782 9.8787 15.3634 10.3639Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M10.6666 27.12C4.93329 25.28 0 19.2267 0 12.7867V6.52001C0 5.40001 0.693334 4.41334 1.73333 4.01334L9.73333 1.01334C10.3333 0.786673 11 0.786673 11.6 1.02667L19.6 4.02667C20.1083 4.21658 20.5465 4.55701 20.8562 5.00252C21.1659 5.44803 21.3324 5.97742 21.3333 6.52001V12.7867C21.3333 19.24 16.4 25.28 10.6666 27.12Z" fill="currentColor" fill-opacity="0.22"></path><path d="M10.0845 1.94967L10.0867 1.94881C10.4587 1.8083 10.8666 1.81036 11.2286 1.95515L11.2387 1.95919L11.2489 1.963L19.2489 4.963L19.25 4.96342C19.5677 5.08211 19.8416 5.29488 20.0351 5.57333C20.2285 5.85151 20.3326 6.18203 20.3333 6.52082C20.3333 6.52113 20.3333 6.52144 20.3333 6.52176L20.3333 12.7867C20.3333 18.6535 15.8922 24.2319 10.6666 26.0652C5.44153 24.2316 1 18.6409 1 12.7867V6.52001C1 5.82357 1.42893 5.20343 2.08883 4.94803L10.0845 1.94967Z" stroke="currentColor" stroke-opacity="0.30" stroke-width="2"></path></svg>
296
+
297
+ <span class="mr-0.5 max-sm:hidden">Safe</span></button>
298
+
299
+ </div></div>
300
+ </div>
301
+
302
+ <div class="flex items-center gap-x-3 dark:text-gray-300 sm:ml-auto"><div class="SVELTE_HYDRATER contents" data-target="LineWrapButton" data-props="{&quot;classNames&quot;:&quot;text-xs&quot;,&quot;lineSelectorClass&quot;:&quot;blob-line&quot;}">
303
+
304
+ <button class="relative text-xs focus:outline-hidden inline-flex cursor-pointer items-center justify-center text-sm mx-0.5 " type="button" title="Toggle Line Wrap"><svg class="opacity-50" width="1em" height="1em" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 1.25H11.25M0.75 5H9C9.75 5 11.25 5.375 11.25 6.875C11.25 8.375 9.99975 8.75 9.375 8.75H6M6 8.75L7.5 7.25M6 8.75L7.5 10.25M0.75 8.75H3.75" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"></path></svg></button></div>
305
+ 73.7 kB</div></div>
306
+
307
+ <div class="relative min-h-[100px] rounded-b-lg border border-t-0 leading-tight dark:border-gray-800 dark:bg-gray-925">
308
+ <div class="p-4 py-8 text-center">This file contains binary data. It cannot be displayed, but you can still
309
+ <a class="underline" href="/spaces/papaduvalier/open-webui/resolve/main/webui.db">download</a>
310
+ it.
311
+ </div></div></section></div></main>
312
+
313
+ </div>
314
+
315
+ <script>
316
+ import("\/front\/build\/kube-8ef7f6e\/index.js");
317
+ window.moonSha = "kube-8ef7f6e\/";
318
+ window.__hf_deferred = {};
319
+ </script>
320
+
321
+ <!-- Stripe -->
322
+ <script>
323
+ if (["hf.co", "huggingface.co"].includes(window.location.hostname)) {
324
+ const script = document.createElement("script");
325
+ script.src = "https://js.stripe.com/v3/";
326
+ script.async = true;
327
+ document.head.appendChild(script);
328
+ }
329
+ </script>
330
+ </body>
331
+ </html>
webui2.db ADDED
@@ -0,0 +1,331 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html class="">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
6
+ <meta name="description" content="We’re on a journey to advance and democratize artificial intelligence through open source and open science." />
7
+ <meta property="fb:app_id" content="1321688464574422" />
8
+ <meta name="twitter:card" content="summary_large_image" />
9
+ <meta name="twitter:site" content="@huggingface" />
10
+ <meta name="twitter:image" content="https://huggingface.co/front/thumbnails/v2-2.png" />
11
+ <meta property="og:title" content="webui2.db · papaduvalier/open-webui at main" />
12
+ <meta property="og:type" content="website" />
13
+ <meta property="og:url" content="https://huggingface.co/spaces/papaduvalier/open-webui/blob/main/webui2.db" />
14
+ <meta property="og:image" content="https://huggingface.co/front/thumbnails/v2-2.png" />
15
+
16
+ <link rel="stylesheet" href="/front/build/kube-8ef7f6e/style.css" />
17
+
18
+ <link rel="preconnect" href="https://fonts.gstatic.com" />
19
+ <link
20
+ href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300;1,400;1,600;1,700&display=swap"
21
+ rel="stylesheet"
22
+ />
23
+ <link
24
+ href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&display=swap"
25
+ rel="stylesheet"
26
+ />
27
+
28
+ <link
29
+ rel="preload"
30
+ href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.12.0/katex.min.css"
31
+ as="style"
32
+ onload="this.onload=null;this.rel='stylesheet'"
33
+ />
34
+ <noscript>
35
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.12.0/katex.min.css" />
36
+ </noscript>
37
+
38
+ <script>const guestTheme = document.cookie.match(/theme=(\w+)/)?.[1]; document.documentElement.classList.toggle('dark', guestTheme === 'dark' || ( (!guestTheme || guestTheme === 'system') && window.matchMedia('(prefers-color-scheme: dark)').matches));</script>
39
+ <link rel="canonical" href="https://huggingface.co/spaces/papaduvalier/open-webui/blob/main/webui2.db">
40
+
41
+ <title>webui2.db · papaduvalier/open-webui at main</title>
42
+
43
+ <script
44
+ defer
45
+ data-domain="huggingface.co"
46
+ event-loggedIn="true"
47
+ src="/js/script.pageview-props.js"
48
+ ></script>
49
+ <script>
50
+ window.plausible =
51
+ window.plausible ||
52
+ function () {
53
+ (window.plausible.q = window.plausible.q || []).push(arguments);
54
+ };
55
+ </script>
56
+ <script>
57
+ window.hubConfig = {"features":{"signupDisabled":false},"sshGitUrl":"[email protected]","moonHttpUrl":"https:\/\/huggingface.co","captchaApiKey":"bd5f2066-93dc-4bdd-a64b-a24646ca3859","captchaDisabledOnSignup":true,"datasetViewerPublicUrl":"https:\/\/datasets-server.huggingface.co","stripePublicKey":"pk_live_x2tdjFXBCvXo2FFmMybezpeM00J6gPCAAc","environment":"production","userAgent":"HuggingFace (production)","spacesIframeDomain":"hf.space","spacesApiUrl":"https:\/\/api.hf.space","docSearchKey":"ece5e02e57300e17d152c08056145326e90c4bff3dd07d7d1ae40cf1c8d39cb6","logoDev":{"apiUrl":"https:\/\/img.logo.dev\/","apiKey":"pk_UHS2HZOeRnaSOdDp7jbd5w"}};
58
+ </script>
59
+ <script type="text/javascript" src="https://de5282c3ca0c.edge.sdk.awswaf.com/de5282c3ca0c/526cf06acb0d/challenge.js" defer></script>
60
+
61
+ </head>
62
+ <body class="flex flex-col min-h-dvh bg-white dark:bg-gray-950 text-black ViewerBlobPage">
63
+ <div class="flex min-h-dvh flex-col"><div class="SVELTE_HYDRATER contents" data-target="SystemThemeMonitor" data-props="{&quot;isLoggedIn&quot;:true}"></div>
64
+
65
+ <div class="SVELTE_HYDRATER contents" data-target="MainHeader" data-props="{&quot;authLight&quot;:{&quot;csrfToken&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyNDI5NTAsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI2MzM2MDNkN2I2ZDQ2MTk3NTNhNTcwMTA0NzZhYjhmOGQ3OTA0MTk0NDJkZDI5ZGU3ZTRmY2YzNDdkM2NlNDFhIn0=&quot;,&quot;hasHfLevelAccess&quot;:false,&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;requiresSSO&quot;:false,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;numUsers&quot;:2545}],&quot;user&quot;:&quot;papaduvalier&quot;,&quot;canPost&quot;:false,&quot;canHaveBilling&quot;:true,&quot;canCreateOrg&quot;:true,&quot;theme&quot;:&quot;light&quot;,&quot;notifications&quot;:{&quot;org_suggestions&quot;:false,&quot;discussions_watched&quot;:false,&quot;org_suggestions_to_create&quot;:false},&quot;hardwareItems&quot;:[],&quot;hardwareItemsPrivate&quot;:false,&quot;usage&quot;:{&quot;storage&quot;:{&quot;summary&quot;:{&quot;space&quot;:{&quot;used&quot;:90810888,&quot;usedPrivate&quot;:90810888,&quot;usedPublic&quot;:0,&quot;count&quot;:38},&quot;model&quot;:{&quot;used&quot;:5449365907,&quot;usedPrivate&quot;:5449365907,&quot;usedPublic&quot;:0,&quot;count&quot;:1},&quot;dataset&quot;:{&quot;used&quot;:57858,&quot;usedPrivate&quot;:57858,&quot;usedPublic&quot;:0,&quot;count&quot;:1}},&quot;used&quot;:5540234653,&quot;count&quot;:40,&quot;limit&quot;:100000000000,&quot;usedPrivate&quot;:5540234653,&quot;usedPublic&quot;:0,&quot;historicalGrant&quot;:5540234653},&quot;inferenceApi&quot;:{&quot;used&quot;:0,&quot;limit&quot;:1000,&quot;duration&quot;:86400,&quot;renewal&quot;:86400,&quot;lastUpdated&quot;:&quot;2025-02-04T11:15:21.099Z&quot;},&quot;zeroGpu&quot;:{&quot;base&quot;:300,&quot;current&quot;:300,&quot;lastUpdated&quot;:&quot;2025-04-14T17:30:30.830Z&quot;},&quot;inference&quot;:{&quot;usedNanoUsd&quot;:0,&quot;numRequests&quot;:0,&quot;providerDetails&quot;:[],&quot;periodEnd&quot;:&quot;2025-04-30T23:59:59.999Z&quot;,&quot;periodStart&quot;:&quot;2025-04-01T00:00:00.000Z&quot;,&quot;includedNanoUsd&quot;:100000000,&quot;limitNanoUsd&quot;:100000000,&quot;lastUpdated&quot;:&quot;2025-04-14T17:30:30.830Z&quot;}},&quot;welcomeLinks&quot;:[]}},&quot;classNames&quot;:&quot;&quot;,&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isWide&quot;:false,&quot;isZh&quot;:false,&quot;user&quot;:&quot;papaduvalier&quot;,&quot;unreadNotifications&quot;:68,&quot;csrf&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyNDI5NTAsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI2MzM2MDNkN2I2ZDQ2MTk3NTNhNTcwMTA0NzZhYjhmOGQ3OTA0MTk0NDJkZDI5ZGU3ZTRmY2YzNDdkM2NlNDFhIn0=&quot;,&quot;canCreateOrg&quot;:true,&quot;isPro&quot;:false}"><header class="border-b border-gray-100 "><div class="w-full px-4 container flex h-16 items-center"><div class="flex flex-1 items-center"><a class="mr-5 flex flex-none items-center lg:mr-6" href="/"><img alt="Hugging Face's logo" class="w-7 md:mr-2" src="/front/assets/huggingface_logo-noborder.svg">
66
+ <span class="hidden whitespace-nowrap text-lg font-bold md:block">Hugging Face</span></a>
67
+ <div class="relative flex-1 lg:max-w-sm mr-2 sm:mr-4 md:mr-3 xl:mr-6"><input autocomplete="off" class="w-full dark:bg-gray-950 pl-8 form-input-alt h-9 pr-3 focus:shadow-xl " name="" placeholder="Search models, datasets, users..." spellcheck="false" type="text" value="">
68
+ <svg class="absolute left-2.5 text-gray-400 top-1/2 transform -translate-y-1/2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M30 28.59L22.45 21A11 11 0 1 0 21 22.45L28.59 30zM5 14a9 9 0 1 1 9 9a9 9 0 0 1-9-9z" fill="currentColor"></path></svg>
69
+ </div>
70
+ <div class="flex flex-none items-center justify-center p-0.5 place-self-stretch lg:hidden"><button class="relative z-40 flex h-6 w-8 items-center justify-center" type="button"><svg width="1em" height="1em" viewBox="0 0 10 10" class="text-xl" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" preserveAspectRatio="xMidYMid meet" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.65039 2.9999C1.65039 2.8066 1.80709 2.6499 2.00039 2.6499H8.00039C8.19369 2.6499 8.35039 2.8066 8.35039 2.9999C8.35039 3.1932 8.19369 3.3499 8.00039 3.3499H2.00039C1.80709 3.3499 1.65039 3.1932 1.65039 2.9999ZM1.65039 4.9999C1.65039 4.8066 1.80709 4.6499 2.00039 4.6499H8.00039C8.19369 4.6499 8.35039 4.8066 8.35039 4.9999C8.35039 5.1932 8.19369 5.3499 8.00039 5.3499H2.00039C1.80709 5.3499 1.65039 5.1932 1.65039 4.9999ZM2.00039 6.6499C1.80709 6.6499 1.65039 6.8066 1.65039 6.9999C1.65039 7.1932 1.80709 7.3499 2.00039 7.3499H8.00039C8.19369 7.3499 8.35039 7.1932 8.35039 6.9999C8.35039 6.8066 8.19369 6.6499 8.00039 6.6499H2.00039Z"></path></svg>
71
+ <div class="bg-linear-to-br absolute bottom-0.5 right-1.5 z-20 h-2 w-2 rounded-full from-yellow-400 to-orange-500 ring-1 ring-white dark:ring-gray-950"></div></button>
72
+
73
+ </div></div>
74
+ <nav aria-label="Main" class="ml-auto hidden lg:block"><ul class="flex items-center space-x-1.5 2xl:space-x-2"><li class="hover:text-indigo-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/models"><svg class="mr-1.5 text-gray-400 group-hover:text-indigo-500" style="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path class="uim-quaternary" d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z" opacity=".25" fill="currentColor"></path><path class="uim-tertiary" d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z" fill="currentColor"></path></svg>
75
+ Models</a>
76
+ </li><li class="hover:text-red-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/datasets"><svg class="mr-1.5 text-gray-400 group-hover:text-red-500" style="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 25 25"><ellipse cx="12.5" cy="5" fill="currentColor" fill-opacity="0.25" rx="7.5" ry="2"></ellipse><path d="M12.5 15C16.6421 15 20 14.1046 20 13V20C20 21.1046 16.6421 22 12.5 22C8.35786 22 5 21.1046 5 20V13C5 14.1046 8.35786 15 12.5 15Z" fill="currentColor" opacity="0.5"></path><path d="M12.5 7C16.6421 7 20 6.10457 20 5V11.5C20 12.6046 16.6421 13.5 12.5 13.5C8.35786 13.5 5 12.6046 5 11.5V5C5 6.10457 8.35786 7 12.5 7Z" fill="currentColor" opacity="0.5"></path><path d="M5.23628 12C5.08204 12.1598 5 12.8273 5 13C5 14.1046 8.35786 15 12.5 15C16.6421 15 20 14.1046 20 13C20 12.8273 19.918 12.1598 19.7637 12C18.9311 12.8626 15.9947 13.5 12.5 13.5C9.0053 13.5 6.06886 12.8626 5.23628 12Z" fill="currentColor"></path></svg>
77
+ Datasets</a>
78
+ </li><li class="hover:text-blue-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/spaces"><svg class="mr-1.5 text-gray-400 group-hover:text-blue-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 25 25"><path opacity=".5" d="M6.016 14.674v4.31h4.31v-4.31h-4.31ZM14.674 14.674v4.31h4.31v-4.31h-4.31ZM6.016 6.016v4.31h4.31v-4.31h-4.31Z" fill="currentColor"></path><path opacity=".75" fill-rule="evenodd" clip-rule="evenodd" d="M3 4.914C3 3.857 3.857 3 4.914 3h6.514c.884 0 1.628.6 1.848 1.414a5.171 5.171 0 0 1 7.31 7.31c.815.22 1.414.964 1.414 1.848v6.514A1.914 1.914 0 0 1 20.086 22H4.914A1.914 1.914 0 0 1 3 20.086V4.914Zm3.016 1.102v4.31h4.31v-4.31h-4.31Zm0 12.968v-4.31h4.31v4.31h-4.31Zm8.658 0v-4.31h4.31v4.31h-4.31Zm0-10.813a2.155 2.155 0 1 1 4.31 0 2.155 2.155 0 0 1-4.31 0Z" fill="currentColor"></path><path opacity=".25" d="M16.829 6.016a2.155 2.155 0 1 0 0 4.31 2.155 2.155 0 0 0 0-4.31Z" fill="currentColor"></path></svg>
79
+ Spaces</a>
80
+ </li><li class="hover:text-yellow-700 max-xl:hidden"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/posts"><svg class="mr-1.5 text-gray-400 group-hover:text-yellow-500 text-yellow-500!" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 12 12" preserveAspectRatio="xMidYMid meet"><path fill="currentColor" fill-rule="evenodd" d="M3.73 2.4A4.25 4.25 0 1 1 6 10.26H2.17l-.13-.02a.43.43 0 0 1-.3-.43l.01-.06a.43.43 0 0 1 .12-.22l.84-.84A4.26 4.26 0 0 1 3.73 2.4Z" clip-rule="evenodd"></path></svg>
81
+ Posts</a>
82
+ </li><li class="hover:text-yellow-700"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/docs"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="mr-1.5 text-gray-400 group-hover:text-yellow-500" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 16 16"><path d="m2.28 3.7-.3.16a.67.67 0 0 0-.34.58v8.73l.01.04.02.07.01.04.03.06.02.04.02.03.04.06.05.05.04.04.06.04.06.04.08.04.08.02h.05l.07.02h.11l.04-.01.07-.02.03-.01.07-.03.22-.12a5.33 5.33 0 0 1 5.15.1.67.67 0 0 0 .66 0 5.33 5.33 0 0 1 5.33 0 .67.67 0 0 0 1-.58V4.36a.67.67 0 0 0-.34-.5l-.3-.17v7.78a.63.63 0 0 1-.87.59 4.9 4.9 0 0 0-4.35.35l-.65.39a.29.29 0 0 1-.15.04.29.29 0 0 1-.16-.04l-.65-.4a4.9 4.9 0 0 0-4.34-.34.63.63 0 0 1-.87-.59V3.7Z" fill="currentColor" class="dark:opacity-40"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M8 3.1a5.99 5.99 0 0 0-5.3-.43.66.66 0 0 0-.42.62v8.18c0 .45.46.76.87.59a4.9 4.9 0 0 1 4.34.35l.65.39c.05.03.1.04.16.04.05 0 .1-.01.15-.04l.65-.4a4.9 4.9 0 0 1 4.35-.34.63.63 0 0 0 .86-.59V3.3a.67.67 0 0 0-.41-.62 5.99 5.99 0 0 0-5.3.43l-.3.17L8 3.1Zm.73 1.87a.43.43 0 1 0-.86 0v5.48a.43.43 0 0 0 .86 0V4.97Z" fill="currentColor" class="opacity-40 dark:opacity-100"></path><path d="M8.73 4.97a.43.43 0 1 0-.86 0v5.48a.43.43 0 1 0 .86 0V4.96Z" fill="currentColor" class="dark:opacity-40"></path></svg>
83
+ Docs</a>
84
+ </li><li class="hover:text-black dark:hover:text-white"><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/enterprise"><svg class="mr-1.5 text-gray-400 group-hover:text-black dark:group-hover:text-white" xmlns="http://www.w3.org/2000/svg" fill="none" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 33 27"><path fill="currentColor" fill-rule="evenodd" d="M13.5.7a8.7 8.7 0 0 0-7.7 5.7L1 20.6c-1 3.1.9 5.7 4.1 5.7h15c3.3 0 6.8-2.6 7.8-5.7l4.6-14.2c1-3.1-.8-5.7-4-5.7h-15Zm1.1 5.7L9.8 20.3h9.8l1-3.1h-5.8l.8-2.5h4.8l1.1-3h-4.8l.8-2.3H23l1-3h-9.5Z" clip-rule="evenodd"></path></svg>
85
+ Enterprise</a>
86
+ </li>
87
+
88
+ <li><a class="group flex items-center px-2 py-0.5 dark:text-gray-300 dark:hover:text-gray-100" href="/pricing">Pricing
89
+ </a></li>
90
+
91
+ <li><div class="relative group">
92
+ <button class="px-2 py-0.5 hover:text-gray-500 dark:hover:text-gray-600 flex items-center " type="button">
93
+ <svg class=" text-gray-500 w-5 group-hover:text-gray-400 dark:text-gray-300 dark:group-hover:text-gray-100" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 32 18" preserveAspectRatio="xMidYMid meet"><path fill-rule="evenodd" clip-rule="evenodd" d="M14.4504 3.30221C14.4504 2.836 14.8284 2.45807 15.2946 2.45807H28.4933C28.9595 2.45807 29.3374 2.836 29.3374 3.30221C29.3374 3.76842 28.9595 4.14635 28.4933 4.14635H15.2946C14.8284 4.14635 14.4504 3.76842 14.4504 3.30221Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M14.4504 9.00002C14.4504 8.53382 14.8284 8.15588 15.2946 8.15588H28.4933C28.9595 8.15588 29.3374 8.53382 29.3374 9.00002C29.3374 9.46623 28.9595 9.84417 28.4933 9.84417H15.2946C14.8284 9.84417 14.4504 9.46623 14.4504 9.00002Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M14.4504 14.6978C14.4504 14.2316 14.8284 13.8537 15.2946 13.8537H28.4933C28.9595 13.8537 29.3374 14.2316 29.3374 14.6978C29.3374 15.164 28.9595 15.542 28.4933 15.542H15.2946C14.8284 15.542 14.4504 15.164 14.4504 14.6978Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M1.94549 6.87377C2.27514 6.54411 2.80962 6.54411 3.13928 6.87377L6.23458 9.96907L9.32988 6.87377C9.65954 6.54411 10.194 6.54411 10.5237 6.87377C10.8533 7.20343 10.8533 7.73791 10.5237 8.06756L6.23458 12.3567L1.94549 8.06756C1.61583 7.73791 1.61583 7.20343 1.94549 6.87377Z" fill="currentColor"></path></svg>
94
+
95
+ </button>
96
+
97
+
98
+ </div></li>
99
+ <li><hr class="h-5 w-0.5 border-none bg-gray-100 dark:bg-gray-800"></li>
100
+ <li><form action="/logout" method="POST" class="hidden"><input type="hidden" name="csrf" value="eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyNDI5NTAsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI2MzM2MDNkN2I2ZDQ2MTk3NTNhNTcwMTA0NzZhYjhmOGQ3OTA0MTk0NDJkZDI5ZGU3ZTRmY2YzNDdkM2NlNDFhIn0="></form>
101
+ <div class="relative ml-2 w-[1.38rem] h-[1.38rem] ">
102
+ <button class="ml-auto rounded-full ring-2 group ring-yellow-500 ring-offset-1 focus:ring-yellow-600 hover:ring-offset-1 focus:ring-offset-1 focus:outline-hidden outline-hidden dark:ring-offset-gray-950 " type="button">
103
+
104
+ <div class="relative"><img alt="" class="h-[1.38rem] w-[1.38rem] overflow-hidden rounded-full" src="/avatars/1c3edd8d8475f326628b5d00b427202b.svg" crossorigin="anonymous">
105
+ <div class="bg-linear-to-br absolute -bottom-0.5 -right-0.5 z-20 h-2 w-2 rounded-full from-yellow-400 to-orange-500 ring-1 ring-white dark:ring-gray-950"></div></div>
106
+
107
+ </button>
108
+
109
+
110
+ </div></li></ul></nav></div></header></div>
111
+
112
+
113
+
114
+ <div class="SVELTE_HYDRATER contents" data-target="SSOBanner" data-props="{&quot;organizations&quot;:[]}"></div>
115
+
116
+
117
+
118
+ <main class="flex flex-1 flex-col"><div class="SVELTE_HYDRATER contents" data-target="SpaceHeader" data-props="{&quot;activeTab&quot;:&quot;files&quot;,&quot;authLight&quot;:{&quot;csrfToken&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyNDI5NTAsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI2MzM2MDNkN2I2ZDQ2MTk3NTNhNTcwMTA0NzZhYjhmOGQ3OTA0MTk0NDJkZDI5ZGU3ZTRmY2YzNDdkM2NlNDFhIn0=&quot;,&quot;hasHfLevelAccess&quot;:false,&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;requiresSSO&quot;:false,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;numUsers&quot;:2545}],&quot;user&quot;:&quot;papaduvalier&quot;,&quot;canPost&quot;:false,&quot;canHaveBilling&quot;:true,&quot;canCreateOrg&quot;:true,&quot;theme&quot;:&quot;light&quot;,&quot;notifications&quot;:{&quot;org_suggestions&quot;:false,&quot;discussions_watched&quot;:false,&quot;org_suggestions_to_create&quot;:false},&quot;hardwareItems&quot;:[],&quot;hardwareItemsPrivate&quot;:false,&quot;usage&quot;:{&quot;storage&quot;:{&quot;summary&quot;:{&quot;space&quot;:{&quot;used&quot;:90810888,&quot;usedPrivate&quot;:90810888,&quot;usedPublic&quot;:0,&quot;count&quot;:38},&quot;model&quot;:{&quot;used&quot;:5449365907,&quot;usedPrivate&quot;:5449365907,&quot;usedPublic&quot;:0,&quot;count&quot;:1},&quot;dataset&quot;:{&quot;used&quot;:57858,&quot;usedPrivate&quot;:57858,&quot;usedPublic&quot;:0,&quot;count&quot;:1}},&quot;used&quot;:5540234653,&quot;count&quot;:40,&quot;limit&quot;:100000000000,&quot;usedPrivate&quot;:5540234653,&quot;usedPublic&quot;:0,&quot;historicalGrant&quot;:5540234653},&quot;inferenceApi&quot;:{&quot;used&quot;:0,&quot;limit&quot;:1000,&quot;duration&quot;:86400,&quot;renewal&quot;:86400,&quot;lastUpdated&quot;:&quot;2025-02-04T11:15:21.099Z&quot;},&quot;zeroGpu&quot;:{&quot;base&quot;:300,&quot;current&quot;:300,&quot;lastUpdated&quot;:&quot;2025-04-14T17:30:30.830Z&quot;},&quot;inference&quot;:{&quot;usedNanoUsd&quot;:0,&quot;numRequests&quot;:0,&quot;providerDetails&quot;:[],&quot;periodEnd&quot;:&quot;2025-04-30T23:59:59.999Z&quot;,&quot;periodStart&quot;:&quot;2025-04-01T00:00:00.000Z&quot;,&quot;includedNanoUsd&quot;:100000000,&quot;limitNanoUsd&quot;:100000000,&quot;lastUpdated&quot;:&quot;2025-04-14T17:30:30.830Z&quot;}},&quot;welcomeLinks&quot;:[]}},&quot;author&quot;:{&quot;_id&quot;:&quot;647c884e1f878439e2fe9b80&quot;,&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;fullname&quot;:&quot;papa duvalier&quot;,&quot;name&quot;:&quot;papaduvalier&quot;,&quot;type&quot;:&quot;user&quot;,&quot;isPro&quot;:false,&quot;isHf&quot;:false,&quot;isHfAdmin&quot;:false,&quot;isMod&quot;:false,&quot;followerCount&quot;:1},&quot;canDisable&quot;:false,&quot;canReadRepoSettings&quot;:true,&quot;canWriteRepoSettings&quot;:true,&quot;discussionsStats&quot;:{&quot;closed&quot;:0,&quot;open&quot;:0,&quot;total&quot;:0},&quot;query&quot;:{},&quot;space&quot;:{&quot;author&quot;:&quot;papaduvalier&quot;,&quot;colorFrom&quot;:&quot;yellow&quot;,&quot;colorTo&quot;:&quot;red&quot;,&quot;cardData&quot;:{&quot;title&quot;:&quot;Open Webui&quot;,&quot;emoji&quot;:&quot;⚡&quot;,&quot;colorFrom&quot;:&quot;yellow&quot;,&quot;colorTo&quot;:&quot;red&quot;,&quot;sdk&quot;:&quot;docker&quot;,&quot;pinned&quot;:false,&quot;license&quot;:&quot;mit&quot;},&quot;createdAt&quot;:&quot;2024-04-13T06:58:23.000Z&quot;,&quot;emoji&quot;:&quot;⚡&quot;,&quot;discussionsDisabled&quot;:true,&quot;duplicationDisabled&quot;:false,&quot;id&quot;:&quot;papaduvalier/open-webui&quot;,&quot;isLikedByUser&quot;:false,&quot;watched&quot;:{&quot;isWatching&quot;:true,&quot;isMuted&quot;:false,&quot;mode&quot;:&quot;global&quot;},&quot;lastModified&quot;:&quot;2025-04-14T17:07:25.000Z&quot;,&quot;likes&quot;:0,&quot;pinned&quot;:false,&quot;private&quot;:true,&quot;gated&quot;:false,&quot;repoType&quot;:&quot;space&quot;,&quot;subdomain&quot;:&quot;papaduvalier-open-webui&quot;,&quot;sdk&quot;:&quot;docker&quot;,&quot;title&quot;:&quot;Open Webui&quot;,&quot;originSpace&quot;:{&quot;name&quot;:&quot;vilarin/open-webui&quot;,&quot;author&quot;:{&quot;_id&quot;:&quot;642827944fe87caede802784&quot;,&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/642827944fe87caede802784/a7s3Ub9Cy6-PuuaX8wwXm.png&quot;,&quot;fullname&quot;:&quot;VILARIN&quot;,&quot;name&quot;:&quot;vilarin&quot;,&quot;type&quot;:&quot;user&quot;,&quot;isPro&quot;:false,&quot;isHf&quot;:false,&quot;isHfAdmin&quot;:false,&quot;isMod&quot;:false,&quot;followerCount&quot;:80}},&quot;runtime&quot;:{&quot;stage&quot;:&quot;BUILD_ERROR&quot;,&quot;hardware&quot;:{&quot;current&quot;:null,&quot;requested&quot;:&quot;cpu-upgrade&quot;},&quot;storage&quot;:&quot;medium&quot;,&quot;gcTimeout&quot;:900,&quot;errorMessage&quot;:&quot;Job failed with exit code: 137&quot;,&quot;replicas&quot;:{&quot;requested&quot;:1},&quot;devMode&quot;:false,&quot;domains&quot;:[{&quot;domain&quot;:&quot;papaduvalier-open-webui.hf.space&quot;,&quot;stage&quot;:&quot;READY&quot;}]},&quot;iframe&quot;:{&quot;embedSrc&quot;:&quot;https://papaduvalier-open-webui.hf.space&quot;,&quot;src&quot;:&quot;https://papaduvalier-open-webui.hf.space&quot;},&quot;secrets&quot;:[{&quot;key&quot;:&quot;DATA_DIR&quot;,&quot;description&quot;:&quot;Backend data directory&quot;,&quot;updatedAt&quot;:&quot;2024-06-07T07:16:33.987Z&quot;},{&quot;key&quot;:&quot;OPENAI_API_KEYS&quot;,&quot;description&quot;:&quot;Groq&quot;,&quot;updatedAt&quot;:&quot;2024-06-05T10:22:37.031Z&quot;},{&quot;key&quot;:&quot;ORIN_PASSWORD&quot;,&quot;updatedAt&quot;:&quot;2024-06-07T09:37:23.977Z&quot;},{&quot;key&quot;:&quot;WEBUI_NAME&quot;,&quot;description&quot;:&quot;startup name&quot;,&quot;updatedAt&quot;:&quot;2024-06-05T10:22:37.032Z&quot;},{&quot;key&quot;:&quot;WEBUI_SECRET_KEY&quot;,&quot;updatedAt&quot;:&quot;2024-06-07T09:32:50.110Z&quot;},{&quot;key&quot;:&quot;OPENWEATHER_API_KEY&quot;,&quot;description&quot;:&quot;get weather for a city or region&quot;,&quot;updatedAt&quot;:&quot;2024-06-14T09:07:38.144Z&quot;},{&quot;key&quot;:&quot;OLLAMA_MODELS&quot;,&quot;description&quot;:&quot;where ollama should store models&quot;,&quot;updatedAt&quot;:&quot;2024-07-05T09:46:56.692Z&quot;},{&quot;key&quot;:&quot;HF_HOME&quot;,&quot;description&quot;:&quot;huggingface home, make persistent&quot;,&quot;updatedAt&quot;:&quot;2024-07-03T09:34:21.701Z&quot;}],&quot;variables&quot;:[{&quot;key&quot;:&quot;ENV&quot;,&quot;value&quot;:&quot;prod&quot;},{&quot;key&quot;:&quot;PORT&quot;,&quot;value&quot;:&quot;7860&quot;},{&quot;key&quot;:&quot;TRANSFORMERS_CACHE&quot;,&quot;value&quot;:&quot;/app/cache&quot;},{&quot;key&quot;:&quot;SCARF_NO_ANALYTICS&quot;,&quot;value&quot;:&quot;true&quot;},{&quot;key&quot;:&quot;DO_NOT_TRACK&quot;,&quot;value&quot;:&quot;true&quot;},{&quot;key&quot;:&quot;OLLAMA_BASE_URLS&quot;,&quot;value&quot;:&quot;&quot;,&quot;updatedAt&quot;:&quot;2024-07-05T09:32:13.076Z&quot;,&quot;description&quot;:&quot;added base URLs&quot;},{&quot;key&quot;:&quot;ENABLE_SIGNUP&quot;,&quot;value&quot;:&quot;True&quot;},{&quot;key&quot;:&quot;OPENAI_API_BASE_URLS&quot;,&quot;value&quot;:&quot;https://api.groq.com/openai/v1;https://openrouter.ai/api/v1&quot;,&quot;updatedAt&quot;:&quot;2024-04-24T16:26:37.422Z&quot;,&quot;description&quot;:&quot;various base urls&quot;},{&quot;key&quot;:&quot;USE_OLLAMA_DOCKER&quot;,&quot;value&quot;:&quot;false&quot;,&quot;updatedAt&quot;:&quot;2024-07-05T09:32:30.626Z&quot;,&quot;description&quot;:&quot;Use internal Ollama&quot;},{&quot;key&quot;:&quot;DEFAULT_MODELS&quot;,&quot;value&quot;:&quot;llama3:latest&quot;,&quot;updatedAt&quot;:&quot;2024-06-30T10:39:37.559Z&quot;,&quot;description&quot;:&quot;default models&quot;}],&quot;sse&quot;:{&quot;url&quot;:&quot;https://api.hf.space/v1/papaduvalier/open-webui&quot;,&quot;jwt&quot;:&quot;eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2NDdjODg0ZTFmODc4NDM5ZTJmZTliODAiLCJ1c2VyIjoicGFwYWR1dmFsaWVyIn0sImlhdCI6MTc0NDY1MTg0Miwic3ViIjoiL3NwYWNlcy9wYXBhZHV2YWxpZXIvb3Blbi13ZWJ1aSIsImV4cCI6MTc0NDczODI0MiwiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.vO3N-Nw5ESOZX9HgK1tUdt5Bty5qhnopOyPv02u5ezZiv6zR8pqHTiAY9XYHAhWXQW8zPkqwEMKdkfuYtQMHAw&quot;},&quot;dockerJwt&quot;:&quot;eyJhbGciOiJFZERTQSJ9.eyJyZWFkIjp0cnVlLCJwZXJtaXNzaW9ucyI6eyJyZXBvLmNvbnRlbnQucmVhZCI6dHJ1ZX0sIm9uQmVoYWxmT2YiOnsia2luZCI6InVzZXIiLCJfaWQiOiI2NDdjODg0ZTFmODc4NDM5ZTJmZTliODAiLCJ1c2VyIjoicGFwYWR1dmFsaWVyIn0sImlhdCI6MTc0NDY1MTg0Miwic3ViIjoiL3NwYWNlcy9wYXBhZHV2YWxpZXIvb3Blbi13ZWJ1aSIsImV4cCI6MTc0NDczODI0MiwiaXNzIjoiaHR0cHM6Ly9odWdnaW5nZmFjZS5jbyJ9.vO3N-Nw5ESOZX9HgK1tUdt5Bty5qhnopOyPv02u5ezZiv6zR8pqHTiAY9XYHAhWXQW8zPkqwEMKdkfuYtQMHAw&quot;,&quot;linkedModels&quot;:[{&quot;author&quot;:&quot;google&quot;,&quot;authorData&quot;:{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/5dd96eb166059660ed1ee413/WtA3YYitedOr9n02eHfJe.png&quot;,&quot;fullname&quot;:&quot;Google&quot;,&quot;name&quot;:&quot;google&quot;,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;isHfAdmin&quot;:false,&quot;isMod&quot;:false,&quot;isEnterprise&quot;:false,&quot;followerCount&quot;:11630},&quot;downloads&quot;:374311,&quot;gated&quot;:&quot;manual&quot;,&quot;id&quot;:&quot;google/gemma-2-9b-it&quot;,&quot;availableInferenceProviders&quot;:[{&quot;name&quot;:&quot;hf-inference&quot;,&quot;modelStatus&quot;:&quot;live&quot;,&quot;providerStatus&quot;:&quot;live&quot;,&quot;providerId&quot;:&quot;google/gemma-2-9b-it&quot;},{&quot;name&quot;:&quot;nebius&quot;,&quot;modelStatus&quot;:&quot;live&quot;,&quot;providerStatus&quot;:&quot;live&quot;,&quot;providerId&quot;:&quot;google/gemma-2-9b-it-fast&quot;},{&quot;name&quot;:&quot;novita&quot;,&quot;modelStatus&quot;:&quot;live&quot;,&quot;providerStatus&quot;:&quot;live&quot;,&quot;providerId&quot;:&quot;google/gemma-2-9b-it&quot;}],&quot;lastModified&quot;:&quot;2024-08-27T19:41:49.000Z&quot;,&quot;likes&quot;:703,&quot;pipeline_tag&quot;:&quot;text-generation&quot;,&quot;private&quot;:false,&quot;repoType&quot;:&quot;model&quot;,&quot;isLikedByUser&quot;:false,&quot;widgetOutputUrls&quot;:[]}],&quot;linkedDatasets&quot;:[],&quot;linkedCollections&quot;:[],&quot;sha&quot;:&quot;347a392b373b54666c2f2a80f53e53f29c8e1cb7&quot;,&quot;hasBlockedOids&quot;:false,&quot;region&quot;:&quot;us&quot;,&quot;xetEnabled&quot;:false},&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;fullname&quot;:&quot;papa duvalier&quot;,&quot;user&quot;:&quot;papaduvalier&quot;,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;userRole&quot;:&quot;contributor&quot;,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;isEnterprise&quot;:false,&quot;numUsers&quot;:2545,&quot;canPay&quot;:false}],&quot;signup&quot;:{&quot;github&quot;:&quot;hblink&quot;},&quot;isHf&quot;:false,&quot;isMod&quot;:false,&quot;type&quot;:&quot;user&quot;,&quot;canPay&quot;:true,&quot;spacesAvailableFlavors&quot;:[&quot;cpu-basic&quot;,&quot;cpu-upgrade&quot;,&quot;zero-a10g&quot;,&quot;t4-small&quot;,&quot;t4-medium&quot;,&quot;l4x1&quot;,&quot;l4x4&quot;,&quot;l40sx1&quot;,&quot;l40sx4&quot;,&quot;l40sx8&quot;,&quot;a10g-small&quot;,&quot;a10g-large&quot;,&quot;a10g-largex2&quot;,&quot;a10g-largex4&quot;,&quot;a100-large&quot;],&quot;canPost&quot;:false},&quot;sessionUuid&quot;:&quot;dZc9Bu4I7e0K-XXbI_aIG&quot;}">
119
+
120
+ <header class="bg-linear-to-t border-b border-gray-100 pt-4 xl:pt-0 from-gray-50-to-white via-white dark:via-gray-950"><div class="container relative flex flex-col xl:flex-row"><h1 class="flex flex-wrap items-center max-md:leading-tight gap-y-1 text-lg xl:flex-none"><a href="/spaces" class="group flex items-center"><svg class="sm:mr-1 false text-gray-400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M7.80914 18.7462V24.1907H13.2536V18.7462H7.80914Z" fill="#FF3270"></path><path d="M18.7458 18.7462V24.1907H24.1903V18.7462H18.7458Z" fill="#861FFF"></path><path d="M7.80914 7.80982V13.2543H13.2536V7.80982H7.80914Z" fill="#097EFF"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M4 6.41775C4 5.08246 5.08246 4 6.41775 4H14.6457C15.7626 4 16.7026 4.75724 16.9802 5.78629C18.1505 4.67902 19.7302 4 21.4685 4C25.0758 4 28.0003 6.92436 28.0003 10.5317C28.0003 12.27 27.3212 13.8497 26.2139 15.02C27.243 15.2977 28.0003 16.2376 28.0003 17.3545V25.5824C28.0003 26.9177 26.9177 28.0003 25.5824 28.0003H17.0635H14.9367H6.41775C5.08246 28.0003 4 26.9177 4 25.5824V15.1587V14.9367V6.41775ZM7.80952 7.80952V13.254H13.254V7.80952H7.80952ZM7.80952 24.1907V18.7462H13.254V24.1907H7.80952ZM18.7462 24.1907V18.7462H24.1907V24.1907H18.7462ZM18.7462 10.5317C18.7462 9.0283 19.9651 7.80952 21.4685 7.80952C22.9719 7.80952 24.1907 9.0283 24.1907 10.5317C24.1907 12.0352 22.9719 13.254 21.4685 13.254C19.9651 13.254 18.7462 12.0352 18.7462 10.5317Z" fill="black"></path><path d="M21.4681 7.80982C19.9647 7.80982 18.7458 9.02861 18.7458 10.5321C18.7458 12.0355 19.9647 13.2543 21.4681 13.2543C22.9715 13.2543 24.1903 12.0355 24.1903 10.5321C24.1903 9.02861 22.9715 7.80982 21.4681 7.80982Z" fill="#FFD702"></path></svg>
121
+ <span class="mr-2.5 font-semibold text-gray-400 group-hover:text-gray-500 max-sm:hidden">Spaces:</span></a>
122
+ <hr class="mx-1.5 h-2 translate-y-px rounded-sm border-r dark:border-gray-600 sm:hidden">
123
+ <div class="group flex flex-none items-center"><div class="relative mr-1 flex items-center"><p class="absolute bottom-4 left-0 hidden select-none items-center whitespace-nowrap text-xs text-gray-400 group-hover:flex md:bottom-[-1.1rem] md:pr-4 md:pt-1"><svg class="flex-none mr-1 text-gray-600 dark:text-gray-200" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 32 26" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M18.5769 0.524814C18.5769 0.234967 18.8126 0 19.1034 0C26.2306 0 32.0001 5.81162 32.0001 12.9704C32.0001 20.1292 26.2306 25.9408 19.1034 25.9408C18.8126 25.9408 18.5769 25.7058 18.5769 25.416C18.5769 25.1261 18.8126 24.8912 19.1034 24.8912C25.64 24.8912 30.9472 19.5586 30.9472 12.9704C30.9472 6.38217 25.64 1.04963 19.1034 1.04963C18.8126 1.04963 18.5769 0.81466 18.5769 0.524814Z" fill="currentcolor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M13.0034 26C20.1849 26 26.0067 20.1965 26.0067 13.0375C26.0067 5.87847 20.1849 0.0749512 13.0034 0.0749512C5.82181 0.0749512 0 5.87847 0 13.0375C0 20.1965 5.82181 26 13.0034 26ZM13.0656 7.51757C13.6455 7.51757 14.1155 7.98615 14.1155 8.56418V12.0529H17.6152C18.1951 12.0529 18.6651 12.5215 18.6651 13.0995C18.6651 13.6775 18.1951 14.1461 17.6152 14.1461H14.1155V17.6348C14.1155 18.2129 13.6455 18.6815 13.0656 18.6815C12.4857 18.6815 12.0157 18.2129 12.0157 17.6348V14.1461H8.51598C7.93613 14.1461 7.46606 13.6775 7.46606 13.0995C7.46606 12.5215 7.93613 12.0529 8.51598 12.0529H12.0157V8.56418C12.0157 7.98615 12.4857 7.51757 13.0656 7.51757Z" fill="currentcolor" fill-opacity="0.65"></path></svg>
124
+ Duplicated from 
125
+ <a href="/spaces/vilarin/open-webui" class="font-mono text-[0.65rem] text-gray-500 underline hover:text-gray-600">vilarin/open-webui</a></p>
126
+ <img alt="" class="w-3.5 h-3.5 rounded-full w-3! h-3! flex-none -mr-[0.115rem] group-hover:mr-[0.115rem] transition-all flex-none" src="https://cdn-avatars.huggingface.co/v1/production/uploads/642827944fe87caede802784/a7s3Ub9Cy6-PuuaX8wwXm.png" crossorigin="anonymous">
127
+
128
+
129
+
130
+ <span class="inline-block "><span class="contents"><a href="/papaduvalier" class="text-gray-400 hover:text-blue-600"><img alt="" class="w-3.5 h-3.5 rounded-full ring-2 dark:ring-gray-900 ring-white flex-none" src="/avatars/1c3edd8d8475f326628b5d00b427202b.svg" crossorigin="anonymous"></a></span>
131
+ </span></div>
132
+
133
+
134
+ <span class="inline-block "><span class="contents"><a href="/papaduvalier" class="text-gray-400 hover:text-blue-600">papaduvalier</a></span>
135
+ </span>
136
+ <div class="mx-0.5 text-gray-300">/</div></div>
137
+
138
+ <div class="max-w-full xl:flex xl:min-w-0 xl:flex-nowrap xl:items-center xl:gap-x-1"><a class="break-words font-mono font-semibold hover:text-blue-600 text-[1.07rem] xl:truncate" href="/spaces/papaduvalier/open-webui">open-webui</a>
139
+ <button class="relative text-xs mr-3 focus:outline-hidden inline-flex cursor-pointer items-center text-sm mx-0.5 text-gray-600 " title="Copy space name to clipboard" type="button"><svg class="" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg>
140
+
141
+ </button></div>
142
+ <div class="inline-flex h-5 items-center rounded-sm border border-gray-200 px-1.5 text-xs leading-none text-gray-500 mr-2">private
143
+ </div>
144
+
145
+
146
+
147
+
148
+
149
+ <span class="inline-block "><span class="contents"><div class="cursor-pointer select-none overflow-hidden font-mono text-xs shrink-0 mr-2 flex items-center rounded-lg border leading-none dark:bg-gray-900
150
+ border-red-100
151
+ text-red-700 dark:text-red-500"><div class="inline-flex items-center px-2 py-[0.32rem] dark:bg-gray-900 border-red-100 bg-red-50 hover:bg-red-100/70 hover:text-red-800 dark:hover:text-red-400"><svg class="mr-1" xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 16 16"><path fill="currentColor" d="M8 2.71A5.29 5.29 0 1 0 8 13.3 5.29 5.29 0 0 0 8 2.7Zm0 9.68a4.4 4.4 0 0 1-3.4-7.16l6.17 6.17c-.78.64-1.76 1-2.77 1Zm3.4-1.62L5.23 4.6a4.4 4.4 0 0 1 6.17 6.17"></path></svg>
152
+ Build error
153
+ </div>
154
+ </div></span>
155
+ </span>
156
+
157
+ <button class="focus:outline-hidden mr-2 inline-flex items-center overflow-hidden whitespace-nowrap rounded-md border bg-white px-1.5 py-1 text-sm leading-none text-gray-500 hover:bg-gray-50 focus:bg-gray-100 dark:hover:bg-gray-900 dark:focus:bg-gray-800"><svg class="2xl:mr-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path fill="currentColor" d="M4 6h18v2H4zm0 6h18v2H4zm0 6h12v2H4zm17 0l7 5l-7 5V18z"></path></svg><span class="hidden 2xl:block">Logs</span></button>
158
+
159
+
160
+
161
+
162
+
163
+ <div class="sm:hidden"><div class="relative ">
164
+ <button class="btn px-1 py-1 text-sm translate-y-0 " type="button">
165
+
166
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="p-px" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg>
167
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" class="absolute right-[-0.25rem] bottom-[-0.25rem] rounded-xs bg-gray-50 p-px text-[0.85rem] text-gray-500 dark:bg-gray-925" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M7.975 3.489a.438.438 0 0 1 0 .618L4.262 7.82a.416.416 0 0 1-.307.126.427.427 0 0 1-.311-.126.438.438 0 0 1 0-.618L7.357 3.49a.438.438 0 0 1 .618 0ZM6.427 8.132 4.88 9.675a2.17 2.17 0 0 1-3.09 0 2.188 2.188 0 0 1 0-3.09l1.542-1.548a.437.437 0 0 0-.618-.619L1.166 5.966a3.063 3.063 0 0 0 4.332 4.332L7.046 8.75a.438.438 0 0 0-.619-.618Zm4.026-7.121a3.063 3.063 0 0 0-4.332 0L4.573 2.559a.438.438 0 0 0 .618.618L6.74 1.635a2.171 2.171 0 0 1 3.09 0 2.188 2.188 0 0 1 0 3.09L8.287 6.273a.432.432 0 0 0 0 .618.421.421 0 0 0 .475.097.438.438 0 0 0 .143-.097l1.548-1.548a3.068 3.068 0 0 0 0-4.332Z"></path></svg>
168
+
169
+ </button>
170
+
171
+
172
+ </div></div>
173
+
174
+
175
+
176
+
177
+
178
+ </h1>
179
+
180
+
181
+ <div class="flex flex-col-reverse gap-x-2 sm:flex-row sm:items-center sm:justify-between xl:ml-auto"><div class="-mb-px flex h-12 items-center overflow-x-auto overflow-y-hidden sm:h-[3.25rem]">
182
+ <a class="tab-alternate" href="/spaces/papaduvalier/open-webui"><svg class="mr-1.5 text-gray-400 flex-none" style="" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path class="uim-quaternary" d="M20.23 7.24L12 12L3.77 7.24a1.98 1.98 0 0 1 .7-.71L11 2.76c.62-.35 1.38-.35 2 0l6.53 3.77c.29.173.531.418.7.71z" opacity=".25" fill="currentColor"></path><path class="uim-tertiary" d="M12 12v9.5a2.09 2.09 0 0 1-.91-.21L4.5 17.48a2.003 2.003 0 0 1-1-1.73v-7.5a2.06 2.06 0 0 1 .27-1.01L12 12z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M20.5 8.25v7.5a2.003 2.003 0 0 1-1 1.73l-6.62 3.82c-.275.13-.576.198-.88.2V12l8.23-4.76c.175.308.268.656.27 1.01z" fill="currentColor"></path></svg>
183
+ App
184
+
185
+
186
+
187
+ </a><a class="tab-alternate active" href="/spaces/papaduvalier/open-webui/tree/main"><svg class="mr-1.5 text-gray-400 flex-none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path class="uim-tertiary" d="M21 19h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0-8h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2zm0 4h-8a1 1 0 0 1 0-2h8a1 1 0 0 1 0 2z" opacity=".5" fill="currentColor"></path><path class="uim-primary" d="M9 19a1 1 0 0 1-1-1V6a1 1 0 0 1 2 0v12a1 1 0 0 1-1 1zm-6-4.333a1 1 0 0 1-.64-1.769L3.438 12l-1.078-.898a1 1 0 0 1 1.28-1.538l2 1.667a1 1 0 0 1 0 1.538l-2 1.667a.999.999 0 0 1-.64.231z" fill="currentColor"></path></svg>
188
+ <span class="xl:hidden">Files</span>
189
+ <span class="hidden xl:inline">Files</span>
190
+
191
+
192
+
193
+ </a><a class="tab-alternate" href="/spaces/papaduvalier/open-webui/settings"><svg class="opacity-50 dark:opacity-70 mr-1.5 text-gray-400 flex-none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 25 25" fill="currentColor"><path d="M13.0101 3C13.7157 3.0078 14.4184 3.09062 15.1077 3.24652C15.2543 3.2797 15.3871 3.35848 15.4874 3.47186C15.5877 3.58523 15.6506 3.72754 15.6672 3.8789L15.8306 5.36678C15.8537 5.57655 15.925 5.77791 16.0389 5.95464C16.1527 6.13137 16.3059 6.27854 16.4861 6.38432C16.6663 6.4901 16.8685 6.55153 17.0764 6.56367C17.2843 6.57581 17.4921 6.53831 17.6831 6.4542L19.0299 5.85495C19.1667 5.79391 19.3187 5.77743 19.4651 5.8078C19.6115 5.83818 19.745 5.9139 19.847 6.02449C20.8199 7.07789 21.5443 8.3412 21.9658 9.71937C22.01 9.8642 22.0087 10.0194 21.962 10.1634C21.9153 10.3074 21.8256 10.4332 21.7053 10.5232L20.5113 11.4158C20.3434 11.5408 20.2069 11.7041 20.1128 11.8925C20.0187 12.0809 19.9697 12.2891 19.9697 12.5003C19.9697 12.7114 20.0187 12.9196 20.1128 13.108C20.2069 13.2964 20.3434 13.4597 20.5113 13.5848L21.7062 14.4763C21.8269 14.5663 21.917 14.6922 21.9638 14.8364C22.0107 14.9806 22.0121 15.1361 21.9677 15.2812C21.546 16.6593 20.8216 17.9225 19.849 18.976C19.7471 19.0864 19.6141 19.162 19.4681 19.1926C19.3221 19.2231 19.1704 19.207 19.0338 19.1466L17.6812 18.5454C17.4904 18.4606 17.2827 18.4225 17.0748 18.4343C16.8668 18.446 16.6645 18.5072 16.4842 18.6129C16.3039 18.7185 16.1508 18.8658 16.037 19.0426C15.9233 19.2195 15.8523 19.421 15.8297 19.6308L15.6672 21.1177C15.6508 21.2674 15.5892 21.4084 15.4908 21.5212C15.3923 21.6341 15.2619 21.7133 15.1173 21.7482C13.7249 22.0839 12.2742 22.0839 10.8817 21.7482C10.7371 21.7133 10.6067 21.6341 10.5083 21.5212C10.4098 21.4084 10.3482 21.2674 10.3318 21.1177L10.1703 19.6328C10.1468 19.4235 10.0751 19.2227 9.96107 19.0465C9.84703 18.8704 9.69381 18.7238 9.51373 18.6186C9.33364 18.5134 9.13172 18.4525 8.92419 18.4408C8.71666 18.4291 8.50931 18.4669 8.31882 18.5512L6.9672 19.1514C6.83048 19.2121 6.67854 19.2283 6.53235 19.1978C6.38616 19.1672 6.25292 19.0915 6.15103 18.9809C5.17789 17.9263 4.45346 16.6616 4.03227 15.2821C3.98795 15.1371 3.98931 14.9816 4.03617 14.8374C4.08304 14.6931 4.17306 14.5673 4.29375 14.4773L5.48868 13.5848C5.65676 13.4599 5.79345 13.2966 5.88768 13.1082C5.9819 12.9198 6.031 12.7115 6.031 12.5003C6.031 12.289 5.9819 12.0808 5.88768 11.8923C5.79345 11.7039 5.65676 11.5407 5.48868 11.4158L4.29375 10.5252C4.17324 10.4351 4.0834 10.3092 4.03671 10.1649C3.99003 10.0207 3.98881 9.8653 4.03323 9.72034C4.45479 8.34219 5.17922 7.07889 6.15199 6.02547C6.25407 5.91487 6.38753 5.83915 6.53391 5.80878C6.6803 5.77841 6.83238 5.79488 6.96912 5.85593L8.31498 6.45517C8.5063 6.53923 8.71441 6.57664 8.92258 6.56439C9.13075 6.55214 9.33319 6.49057 9.51363 6.38462C9.69406 6.27868 9.84747 6.13132 9.96152 5.95438C10.0756 5.77744 10.1471 5.57585 10.1703 5.36581L10.3338 3.8789C10.3503 3.72724 10.4132 3.58462 10.5137 3.47103C10.6142 3.35745 10.7473 3.2786 10.8942 3.24555C11.5835 3.09062 12.2881 3.00877 13.0101 3ZM12.9986 9.57711C12.2337 9.57711 11.5001 9.88508 10.9593 10.4333C10.4184 10.9815 10.1146 11.725 10.1146 12.5003C10.1146 13.2755 10.4184 14.0191 10.9593 14.5672C11.5001 15.1154 12.2337 15.4234 12.9986 15.4234C13.7634 15.4234 14.497 15.1154 15.0378 14.5672C15.5787 14.0191 15.8825 13.2755 15.8825 12.5003C15.8825 11.725 15.5787 10.9815 15.0378 10.4333C14.497 9.88508 13.7634 9.57711 12.9986 9.57711Z"></path></svg>
194
+ Settings
195
+
196
+
197
+
198
+ </a></div>
199
+
200
+
201
+
202
+ <div class="hidden sm:block mt-2 lg:mt-0"><div class="relative ">
203
+ <button class="btn px-1 py-1 text-base translate-y-px " type="button">
204
+
205
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="p-0.5" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><circle cx="16" cy="7" r="3" fill="currentColor"></circle><circle cx="16" cy="16" r="3" fill="currentColor"></circle><circle cx="16" cy="25" r="3" fill="currentColor"></circle></svg>
206
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" class="absolute right-[-0.18rem] bottom-[-0.18rem] rounded-xs bg-gray-50 p-px text-[0.85rem] text-gray-500 dark:bg-gray-925" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 12 12"><path fill="currentColor" d="M7.975 3.489a.438.438 0 0 1 0 .618L4.262 7.82a.416.416 0 0 1-.307.126.427.427 0 0 1-.311-.126.438.438 0 0 1 0-.618L7.357 3.49a.438.438 0 0 1 .618 0ZM6.427 8.132 4.88 9.675a2.17 2.17 0 0 1-3.09 0 2.188 2.188 0 0 1 0-3.09l1.542-1.548a.437.437 0 0 0-.618-.619L1.166 5.966a3.063 3.063 0 0 0 4.332 4.332L7.046 8.75a.438.438 0 0 0-.619-.618Zm4.026-7.121a3.063 3.063 0 0 0-4.332 0L4.573 2.559a.438.438 0 0 0 .618.618L6.74 1.635a2.171 2.171 0 0 1 3.09 0 2.188 2.188 0 0 1 0 3.09L8.287 6.273a.432.432 0 0 0 0 .618.421.421 0 0 0 .475.097.438.438 0 0 0 .143-.097l1.548-1.548a3.068 3.068 0 0 0 0-4.332Z"></path></svg>
207
+
208
+ </button>
209
+
210
+
211
+ </div></div>
212
+
213
+
214
+
215
+
216
+
217
+
218
+ </div></div></header>
219
+
220
+
221
+
222
+
223
+
224
+
225
+ <div class="spinner-overlay fixed inset-0 z-50 flex h-full w-full items-center justify-center overflow-y-auto bg-gray-500 text-white opacity-80 hidden"><svg class="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" fill="none" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path></svg>
226
+ <span>Fetching metadata from the HF Docker repository...</span></div>
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
+ </div>
255
+
256
+ <div class="container relative flex flex-col md:grid md:space-y-0 w-full md:grid-cols-12 space-y-4 md:gap-6 mb-16"><section class="pt-8 border-gray-100 col-span-full"><div class="SVELTE_HYDRATER contents" data-target="ViewerHeader" data-props="{&quot;authLight&quot;:{&quot;csrfToken&quot;:&quot;eyJkYXRhIjp7ImV4cGlyYXRpb24iOjE3NDQ3MzgyNDI5NTAsInVzZXJJZCI6IjY0N2M4ODRlMWY4Nzg0MzllMmZlOWI4MCJ9LCJzaWduYXR1cmUiOiI2MzM2MDNkN2I2ZDQ2MTk3NTNhNTcwMTA0NzZhYjhmOGQ3OTA0MTk0NDJkZDI5ZGU3ZTRmY2YzNDdkM2NlNDFhIn0=&quot;,&quot;hasHfLevelAccess&quot;:false,&quot;u&quot;:{&quot;avatarUrl&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isPro&quot;:false,&quot;orgs&quot;:[{&quot;avatarUrl&quot;:&quot;https://cdn-avatars.huggingface.co/v1/production/uploads/623c830997ddced06d78699b/3qTjC7d3YFCJTwpxd2noq.png&quot;,&quot;fullname&quot;:&quot;MLX Community&quot;,&quot;name&quot;:&quot;mlx-community&quot;,&quot;requiresSSO&quot;:false,&quot;type&quot;:&quot;org&quot;,&quot;isHf&quot;:false,&quot;numUsers&quot;:2545}],&quot;user&quot;:&quot;papaduvalier&quot;,&quot;canPost&quot;:false,&quot;canHaveBilling&quot;:true,&quot;canCreateOrg&quot;:true,&quot;theme&quot;:&quot;light&quot;,&quot;notifications&quot;:{&quot;org_suggestions&quot;:false,&quot;discussions_watched&quot;:false,&quot;org_suggestions_to_create&quot;:false},&quot;hardwareItems&quot;:[],&quot;hardwareItemsPrivate&quot;:false,&quot;usage&quot;:{&quot;storage&quot;:{&quot;summary&quot;:{&quot;space&quot;:{&quot;used&quot;:90810888,&quot;usedPrivate&quot;:90810888,&quot;usedPublic&quot;:0,&quot;count&quot;:38},&quot;model&quot;:{&quot;used&quot;:5449365907,&quot;usedPrivate&quot;:5449365907,&quot;usedPublic&quot;:0,&quot;count&quot;:1},&quot;dataset&quot;:{&quot;used&quot;:57858,&quot;usedPrivate&quot;:57858,&quot;usedPublic&quot;:0,&quot;count&quot;:1}},&quot;used&quot;:5540234653,&quot;count&quot;:40,&quot;limit&quot;:100000000000,&quot;usedPrivate&quot;:5540234653,&quot;usedPublic&quot;:0,&quot;historicalGrant&quot;:5540234653},&quot;inferenceApi&quot;:{&quot;used&quot;:0,&quot;limit&quot;:1000,&quot;duration&quot;:86400,&quot;renewal&quot;:86400,&quot;lastUpdated&quot;:&quot;2025-02-04T11:15:21.099Z&quot;},&quot;zeroGpu&quot;:{&quot;base&quot;:300,&quot;current&quot;:300,&quot;lastUpdated&quot;:&quot;2025-04-14T17:30:30.830Z&quot;},&quot;inference&quot;:{&quot;usedNanoUsd&quot;:0,&quot;numRequests&quot;:0,&quot;providerDetails&quot;:[],&quot;periodEnd&quot;:&quot;2025-04-30T23:59:59.999Z&quot;,&quot;periodStart&quot;:&quot;2025-04-01T00:00:00.000Z&quot;,&quot;includedNanoUsd&quot;:100000000,&quot;limitNanoUsd&quot;:100000000,&quot;lastUpdated&quot;:&quot;2025-04-14T17:30:30.830Z&quot;}},&quot;welcomeLinks&quot;:[]}},&quot;context&quot;:{&quot;repo&quot;:{&quot;name&quot;:&quot;papaduvalier/open-webui&quot;,&quot;type&quot;:&quot;space&quot;},&quot;rev&quot;:&quot;main&quot;,&quot;path&quot;:&quot;webui2.db&quot;,&quot;subpaths&quot;:[{&quot;dir&quot;:&quot;webui2.db&quot;}]},&quot;refs&quot;:{&quot;branches&quot;:[{&quot;name&quot;:&quot;main&quot;,&quot;ref&quot;:&quot;refs/heads/main&quot;,&quot;targetCommit&quot;:&quot;347a392b373b54666c2f2a80f53e53f29c8e1cb7&quot;}],&quot;tags&quot;:[],&quot;converts&quot;:[]},&quot;view&quot;:&quot;blob&quot;}"><header class="flex flex-wrap items-center justify-start pb-2 md:justify-end lg:flex-nowrap"><div class="grow max-md:flex max-md:w-full max-md:items-start max-md:justify-between"><div class="relative mr-4 flex min-w-0 basis-auto flex-wrap items-center md:grow md:basis-full lg:basis-auto lg:flex-nowrap"><div class="relative mr-3 mb-2">
257
+ <button class="text-sm md:text-base btn w-full cursor-pointer text-sm" type="button">
258
+ <svg class="mr-1.5 text-gray-700 dark:text-gray-400" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24" style="transform: rotate(360deg);"><path d="M13 14c-3.36 0-4.46 1.35-4.82 2.24C9.25 16.7 10 17.76 10 19a3 3 0 0 1-3 3a3 3 0 0 1-3-3c0-1.31.83-2.42 2-2.83V7.83A2.99 2.99 0 0 1 4 5a3 3 0 0 1 3-3a3 3 0 0 1 3 3c0 1.31-.83 2.42-2 2.83v5.29c.88-.65 2.16-1.12 4-1.12c2.67 0 3.56-1.34 3.85-2.23A3.006 3.006 0 0 1 14 7a3 3 0 0 1 3-3a3 3 0 0 1 3 3c0 1.34-.88 2.5-2.09 2.86C17.65 11.29 16.68 14 13 14m-6 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1M7 4a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1m10 2a1 1 0 0 0-1 1a1 1 0 0 0 1 1a1 1 0 0 0 1-1a1 1 0 0 0-1-1z" fill="currentColor"></path></svg>
259
+ main
260
+ <svg class="-mr-1 text-gray-500" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"><path d="M16.293 9.293L12 13.586L7.707 9.293l-1.414 1.414L12 16.414l5.707-5.707z" fill="currentColor"></path></svg></button>
261
+
262
+
263
+ </div>
264
+ <div class="relative mb-2 flex flex-wrap items-center"><a class="truncate text-gray-800 hover:underline" href="/spaces/papaduvalier/open-webui/tree/main">open-webui</a>
265
+ <span class="mx-1 text-gray-300">/</span>
266
+ <span class="dark:text-gray-300">webui2.db</span>
267
+ <button class="relative text-xs ml-2 focus:outline-hidden inline-flex cursor-pointer items-center text-sm mx-0.5 text-gray-600 " title="Copy path" type="button"><svg class="" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg>
268
+
269
+ </button></div></div>
270
+ </div>
271
+
272
+ </header></div>
273
+ <div class="SVELTE_HYDRATER contents" data-target="LastCommit" data-props="{&quot;commitLast&quot;:{&quot;date&quot;:&quot;2024-04-23T11:30:10.000Z&quot;,&quot;verified&quot;:&quot;verified&quot;,&quot;subject&quot;:&quot;latest version of webui db&quot;,&quot;authors&quot;:[{&quot;_id&quot;:&quot;647c884e1f878439e2fe9b80&quot;,&quot;avatar&quot;:&quot;/avatars/1c3edd8d8475f326628b5d00b427202b.svg&quot;,&quot;isHf&quot;:false,&quot;user&quot;:&quot;papaduvalier&quot;}],&quot;commit&quot;:{&quot;id&quot;:&quot;49d4a3f5fbdbc147d61e8079cf7abbcc22d5c356&quot;,&quot;parentIds&quot;:[&quot;cc9cabe0a1467bdef403f9a6539522d20a820655&quot;]},&quot;title&quot;:&quot;latest version of webui db&quot;},&quot;repo&quot;:{&quot;name&quot;:&quot;papaduvalier/open-webui&quot;,&quot;type&quot;:&quot;space&quot;}}"><div class="from-gray-100-to-white bg-linear-to-t flex flex-wrap items-baseline rounded-t-lg border border-b-0 px-3 py-2 dark:border-gray-800"><img class="mr-2.5 mt-0.5 h-4 w-4 self-center rounded-full" alt="papaduvalier's picture" src="/avatars/1c3edd8d8475f326628b5d00b427202b.svg">
274
+ <div class="mr-4 flex flex-none items-center truncate"><a class="hover:underline" href="/papaduvalier">papaduvalier
275
+ </a>
276
+
277
+ </div>
278
+ <div class="mr-4 truncate font-mono text-sm text-gray-500 hover:prose-a:underline"><!-- HTML_TAG_START -->latest version of webui db<!-- HTML_TAG_END --></div>
279
+ <a class="rounded-sm border bg-gray-50 px-1.5 text-sm hover:underline dark:border-gray-800 dark:bg-gray-900" href="/spaces/papaduvalier/open-webui/commit/49d4a3f5fbdbc147d61e8079cf7abbcc22d5c356">49d4a3f</a>
280
+ <span class="mx-2 text-green-500 dark:text-green-600 px-1.5 border-green-100 dark:border-green-800 rounded-full border text-xs uppercase" title="This commit is signed and the signature is verified">verified</span>
281
+ <time class="ml-auto hidden flex-none truncate pl-2 text-gray-500 dark:text-gray-400 lg:block" datetime="2024-04-23T11:30:10" title="Tue, 23 Apr 2024 11:30:10 GMT">12 months ago</time></div></div>
282
+ <div class="relative flex flex-wrap items-center border px-3 py-1.5 text-sm text-gray-800 dark:border-gray-800 dark:bg-gray-900 ">
283
+ <a class="my-1 mr-4 flex items-center hover:underline " download="" href="/spaces/papaduvalier/open-webui/resolve/main/webui2.db?download=true"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" viewBox="0 0 32 32"><path fill="currentColor" d="M26 24v4H6v-4H4v4a2 2 0 0 0 2 2h20a2 2 0 0 0 2-2v-4zm0-10l-1.41-1.41L17 20.17V2h-2v18.17l-7.59-7.58L6 14l10 10l10-10z"></path></svg>
284
+ download
285
+ </a><div class="SVELTE_HYDRATER contents" data-target="CopyButton" data-props="{&quot;value&quot;:&quot;https://huggingface.co/spaces/papaduvalier/open-webui/resolve/main/webui2.db&quot;,&quot;style&quot;:&quot;blank&quot;,&quot;label&quot;:&quot;Copy download link&quot;,&quot;classNames&quot;:&quot;my-1 mr-4 flex items-center no-underline hover:underline&quot;}"><button class="relative my-1 mr-4 flex items-center no-underline hover:underline " title="Copy download link" type="button"><svg class="" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" fill="currentColor" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M28,10V28H10V10H28m0-2H10a2,2,0,0,0-2,2V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V10a2,2,0,0,0-2-2Z" transform="translate(0)"></path><path d="M4,18H2V4A2,2,0,0,1,4,2H18V4H4Z" transform="translate(0)"></path><rect fill="none" width="32" height="32"></rect></svg>
286
+ <span class="ml-1.5 ">Copy download link</span>
287
+ </button></div><a class="my-1 mr-4 flex items-center hover:underline " href="/spaces/papaduvalier/open-webui/commits/main/webui2.db"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32" style="transform: rotate(360deg);"><path d="M16 4C9.383 4 4 9.383 4 16s5.383 12 12 12s12-5.383 12-12S22.617 4 16 4zm0 2c5.535 0 10 4.465 10 10s-4.465 10-10 10S6 21.535 6 16S10.465 6 16 6zm-1 2v9h7v-2h-5V8z" fill="currentColor"></path></svg>
288
+ history
289
+ </a><a class="my-1 mr-4 flex items-center hover:underline " href="/spaces/papaduvalier/open-webui/edit/main/webui2.db"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M2 26h28v2H2z" fill="currentColor"></path><path d="M25.4 9c.8-.8.8-2 0-2.8l-3.6-3.6c-.8-.8-2-.8-2.8 0l-15 15V24h6.4l15-15zm-5-5L24 7.6l-3 3L17.4 7l3-3zM6 22v-3.6l10-10l3.6 3.6l-10 10H6z" fill="currentColor"></path></svg>
290
+ rename
291
+ </a><a class="my-1 mr-4 flex items-center hover:underline " href="/spaces/papaduvalier/open-webui/delete/main/webui2.db"><svg class="mr-1.5" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" role="img" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 32 32"><path d="M12 12h2v12h-2z" fill="currentColor"></path><path d="M18 12h2v12h-2z" fill="currentColor"></path><path d="M4 6v2h2v20a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8h2V6zm4 22V8h16v20z" fill="currentColor"></path><path d="M12 2h8v2h-8z" fill="currentColor"></path></svg>
292
+ delete
293
+ </a>
294
+
295
+ <div class="mr-4 flex items-center"><div class="SVELTE_HYDRATER contents" data-target="ScanStatusBadge" data-props="{&quot;classNames&quot;:&quot;mr-2&quot;,&quot;scanStatus&quot;:{&quot;status&quot;:&quot;safe&quot;,&quot;protectAiScan&quot;:{&quot;status&quot;:&quot;unscanned&quot;},&quot;avScan&quot;:{&quot;status&quot;:&quot;safe&quot;},&quot;pickleImportScan&quot;:{&quot;status&quot;:&quot;unscanned&quot;,&quot;pickleImports&quot;:[]}},&quot;repo&quot;:{&quot;name&quot;:&quot;papaduvalier/open-webui&quot;,&quot;type&quot;:&quot;space&quot;},&quot;revision&quot;:&quot;main&quot;,&quot;filePath&quot;:&quot;webui2.db&quot;,&quot;openByDefault&quot;:false}"><div class="sm:relative mr-2"><button class="flex h-[1.125rem] select-none items-center gap-0.5 rounded border pl-0.5 pr-0.5 text-xs leading-tight text-gray-400 hover:cursor-pointer text-gray-400 hover:border-gray-200 hover:bg-gray-50 hover:text-gray-500 dark:border-gray-800 dark:hover:bg-gray-800 dark:hover:text-gray-200 "><svg class="flex-none" width="1em" height="1em" viewBox="0 0 22 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M15.3634 10.3639C15.8486 10.8491 15.8486 11.6357 15.3634 12.1209L10.9292 16.5551C10.6058 16.8785 10.0814 16.8785 9.7579 16.5551L7.03051 13.8277C6.54532 13.3425 6.54532 12.5558 7.03051 12.0707C7.51569 11.5855 8.30234 11.5855 8.78752 12.0707L9.7579 13.041C10.0814 13.3645 10.6058 13.3645 10.9292 13.041L13.6064 10.3639C14.0916 9.8787 14.8782 9.8787 15.3634 10.3639Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M10.6666 27.12C4.93329 25.28 0 19.2267 0 12.7867V6.52001C0 5.40001 0.693334 4.41334 1.73333 4.01334L9.73333 1.01334C10.3333 0.786673 11 0.786673 11.6 1.02667L19.6 4.02667C20.1083 4.21658 20.5465 4.55701 20.8562 5.00252C21.1659 5.44803 21.3324 5.97742 21.3333 6.52001V12.7867C21.3333 19.24 16.4 25.28 10.6666 27.12Z" fill="currentColor" fill-opacity="0.22"></path><path d="M10.0845 1.94967L10.0867 1.94881C10.4587 1.8083 10.8666 1.81036 11.2286 1.95515L11.2387 1.95919L11.2489 1.963L19.2489 4.963L19.25 4.96342C19.5677 5.08211 19.8416 5.29488 20.0351 5.57333C20.2285 5.85151 20.3326 6.18203 20.3333 6.52082C20.3333 6.52113 20.3333 6.52144 20.3333 6.52176L20.3333 12.7867C20.3333 18.6535 15.8922 24.2319 10.6666 26.0652C5.44153 24.2316 1 18.6409 1 12.7867V6.52001C1 5.82357 1.42893 5.20343 2.08883 4.94803L10.0845 1.94967Z" stroke="currentColor" stroke-opacity="0.30" stroke-width="2"></path></svg>
296
+
297
+ <span class="mr-0.5 max-sm:hidden">Safe</span></button>
298
+
299
+ </div></div>
300
+ </div>
301
+
302
+ <div class="flex items-center gap-x-3 dark:text-gray-300 sm:ml-auto"><div class="SVELTE_HYDRATER contents" data-target="LineWrapButton" data-props="{&quot;classNames&quot;:&quot;text-xs&quot;,&quot;lineSelectorClass&quot;:&quot;blob-line&quot;}">
303
+
304
+ <button class="relative text-xs focus:outline-hidden inline-flex cursor-pointer items-center justify-center text-sm mx-0.5 " type="button" title="Toggle Line Wrap"><svg class="opacity-50" width="1em" height="1em" viewBox="0 0 12 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 1.25H11.25M0.75 5H9C9.75 5 11.25 5.375 11.25 6.875C11.25 8.375 9.99975 8.75 9.375 8.75H6M6 8.75L7.5 7.25M6 8.75L7.5 10.25M0.75 8.75H3.75" stroke="currentColor" stroke-width="1.125" stroke-linecap="round" stroke-linejoin="round"></path></svg></button></div>
305
+ 111 kB</div></div>
306
+
307
+ <div class="relative min-h-[100px] rounded-b-lg border border-t-0 leading-tight dark:border-gray-800 dark:bg-gray-925">
308
+ <div class="p-4 py-8 text-center">This file contains binary data. It cannot be displayed, but you can still
309
+ <a class="underline" href="/spaces/papaduvalier/open-webui/resolve/main/webui2.db">download</a>
310
+ it.
311
+ </div></div></section></div></main>
312
+
313
+ </div>
314
+
315
+ <script>
316
+ import("\/front\/build\/kube-8ef7f6e\/index.js");
317
+ window.moonSha = "kube-8ef7f6e\/";
318
+ window.__hf_deferred = {};
319
+ </script>
320
+
321
+ <!-- Stripe -->
322
+ <script>
323
+ if (["hf.co", "huggingface.co"].includes(window.location.hostname)) {
324
+ const script = document.createElement("script");
325
+ script.src = "https://js.stripe.com/v3/";
326
+ script.async = true;
327
+ document.head.appendChild(script);
328
+ }
329
+ </script>
330
+ </body>
331
+ </html>