j4myjohn commited on
Commit
ee8b65e
·
verified ·
1 Parent(s): dba6ab6

how do these work in the main program - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +548 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Chat Bot Extensions
3
- emoji: 📊
4
- colorFrom: indigo
5
- colorTo: green
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: chat-bot-extensions
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,548 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AI Content Generator | RTX 3090/3060</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
12
+ }
13
+ .card-hover:hover {
14
+ transform: translateY(-5px);
15
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
16
+ }
17
+ .sidebar {
18
+ scrollbar-width: thin;
19
+ scrollbar-color: #a777e3 transparent;
20
+ }
21
+ .sidebar::-webkit-scrollbar {
22
+ width: 6px;
23
+ }
24
+ .sidebar::-webkit-scrollbar-thumb {
25
+ background-color: #a777e3;
26
+ border-radius: 3px;
27
+ }
28
+ .progress-ring__circle {
29
+ transition: stroke-dashoffset 0.35s;
30
+ transform: rotate(-90deg);
31
+ transform-origin: 50% 50%;
32
+ }
33
+ @keyframes pulse {
34
+ 0%, 100% {
35
+ opacity: 1;
36
+ }
37
+ 50% {
38
+ opacity: 0.5;
39
+ }
40
+ }
41
+ .animate-pulse {
42
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
43
+ }
44
+ </style>
45
+ </head>
46
+ <body class="bg-gray-100 font-sans antialiased">
47
+ <div class="flex h-screen overflow-hidden">
48
+ <!-- Sidebar -->
49
+ <div class="hidden md:flex md:flex-shrink-0">
50
+ <div class="flex flex-col w-64 gradient-bg text-white">
51
+ <div class="flex items-center justify-center h-16 px-4">
52
+ <div class="flex items-center">
53
+ <i class="fas fa-robot text-2xl mr-2"></i>
54
+ <span class="text-xl font-semibold">AI Studio</span>
55
+ </div>
56
+ </div>
57
+ <div class="flex flex-col flex-grow pt-5 overflow-y-auto sidebar">
58
+ <div class="px-4 space-y-1">
59
+ <a href="#" class="flex items-center px-2 py-3 text-sm font-medium rounded-md bg-black bg-opacity-20 text-white">
60
+ <i class="fas fa-home mr-3"></i>
61
+ Dashboard
62
+ </a>
63
+ <a href="#" class="flex items-center px-2 py-3 text-sm font-medium rounded-md hover:bg-black hover:bg-opacity-10 text-white">
64
+ <i class="fas fa-comment-alt mr-3"></i>
65
+ Text Generation
66
+ </a>
67
+ <a href="#" class="flex items-center px-2 py-3 text-sm font-medium rounded-md hover:bg-black hover:bg-opacity-10 text-white">
68
+ <i class="fas fa-image mr-3"></i>
69
+ Image Generation
70
+ </a>
71
+ <a href="#" class="flex items-center px-2 py-3 text-sm font-medium rounded-md hover:bg-black hover:bg-opacity-10 text-white">
72
+ <i class="fas fa-video mr-3"></i>
73
+ Video Generation
74
+ </a>
75
+ <a href="#" class="flex items-center px-2 py-3 text-sm font-medium rounded-md hover:bg-black hover:bg-opacity-10 text-white">
76
+ <i class="fas fa-microphone-alt mr-3"></i>
77
+ Voice Synthesis
78
+ </a>
79
+ <a href="#" class="flex items-center px-2 py-3 text-sm font-medium rounded-md hover:bg-black hover:bg-opacity-10 text-white">
80
+ <i class="fas fa-cog mr-3"></i>
81
+ Settings
82
+ </a>
83
+ </div>
84
+ <div class="mt-auto px-4 py-4">
85
+ <div class="bg-black bg-opacity-20 rounded-lg p-4">
86
+ <h3 class="text-sm font-medium">System Status</h3>
87
+ <div class="mt-2 space-y-2">
88
+ <div class="flex justify-between text-xs">
89
+ <span>GPU 1 (RTX 3090)</span>
90
+ <span>24/24 GB</span>
91
+ </div>
92
+ <div class="w-full bg-gray-200 rounded-full h-1.5">
93
+ <div class="bg-green-500 h-1.5 rounded-full" style="width: 45%"></div>
94
+ </div>
95
+ <div class="flex justify-between text-xs">
96
+ <span>GPU 2 (RTX 3060)</span>
97
+ <span>8/12 GB</span>
98
+ </div>
99
+ <div class="w-full bg-gray-200 rounded-full h-1.5">
100
+ <div class="bg-yellow-500 h-1.5 rounded-full" style="width: 67%"></div>
101
+ </div>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </div>
108
+
109
+ <!-- Main content -->
110
+ <div class="flex flex-col flex-1 overflow-hidden">
111
+ <!-- Top navigation -->
112
+ <div class="flex items-center justify-between h-16 px-4 bg-white border-b border-gray-200">
113
+ <div class="flex items-center">
114
+ <button class="md:hidden text-gray-500 focus:outline-none">
115
+ <i class="fas fa-bars"></i>
116
+ </button>
117
+ <h1 class="ml-4 text-lg font-medium">AI Content Generator</h1>
118
+ </div>
119
+ <div class="flex items-center space-x-4">
120
+ <div class="relative">
121
+ <button class="p-1 text-gray-400 rounded-full hover:text-gray-500 focus:outline-none">
122
+ <i class="fas fa-bell"></i>
123
+ </button>
124
+ <span class="absolute top-0 right-0 w-2 h-2 bg-red-500 rounded-full"></span>
125
+ </div>
126
+ <div class="relative">
127
+ <button class="flex items-center space-x-2 focus:outline-none">
128
+ <img class="w-8 h-8 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="User profile">
129
+ <span class="hidden md:block text-sm font-medium">Admin</span>
130
+ </button>
131
+ </div>
132
+ </div>
133
+ </div>
134
+
135
+ <!-- Content area -->
136
+ <div class="flex-1 overflow-auto p-4 bg-gray-50">
137
+ <!-- System Info -->
138
+ <div class="mb-6 bg-white rounded-lg shadow p-4">
139
+ <h2 class="text-lg font-semibold mb-4">Your Powerful AI Workstation</h2>
140
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
141
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
142
+ <div class="flex items-center">
143
+ <div class="p-3 rounded-full bg-blue-100 text-blue-600 mr-3">
144
+ <i class="fas fa-microchip"></i>
145
+ </div>
146
+ <div>
147
+ <p class="text-xs text-gray-500">Processor</p>
148
+ <p class="font-medium">Intel i7-7700K @ 4.2GHz</p>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
153
+ <div class="flex items-center">
154
+ <div class="p-3 rounded-full bg-purple-100 text-purple-600 mr-3">
155
+ <i class="fas fa-memory"></i>
156
+ </div>
157
+ <div>
158
+ <p class="text-xs text-gray-500">Memory</p>
159
+ <p class="font-medium">32GB DDR4 2666MHz</p>
160
+ </div>
161
+ </div>
162
+ </div>
163
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
164
+ <div class="flex items-center">
165
+ <div class="p-3 rounded-full bg-green-100 text-green-600 mr-3">
166
+ <i class="fas fa-hdd"></i>
167
+ </div>
168
+ <div>
169
+ <p class="text-xs text-gray-500">Storage</p>
170
+ <p class="font-medium">2TB SSD (M.2 + SATA)</p>
171
+ </div>
172
+ </div>
173
+ </div>
174
+ <div class="bg-gray-50 p-4 rounded-lg border border-gray-200">
175
+ <div class="flex items-center">
176
+ <div class="p-3 rounded-full bg-red-100 text-red-600 mr-3">
177
+ <i class="fas fa-gamepad"></i>
178
+ </div>
179
+ <div>
180
+ <p class="text-xs text-gray-500">Graphics</p>
181
+ <p class="font-medium">RTX 3090 + RTX 3060</p>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+ </div>
187
+
188
+ <!-- AI Extensions -->
189
+ <div class="mb-6">
190
+ <h2 class="text-lg font-semibold mb-4">Compatible AI Extensions</h2>
191
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
192
+ <!-- Video Generation -->
193
+ <div class="bg-white rounded-lg shadow overflow-hidden transition-all duration-300 card-hover">
194
+ <div class="gradient-bg p-4 text-white">
195
+ <div class="flex items-center">
196
+ <i class="fas fa-video text-2xl mr-3"></i>
197
+ <h3 class="text-lg font-semibold">Video Generation</h3>
198
+ </div>
199
+ </div>
200
+ <div class="p-4">
201
+ <ul class="space-y-2 text-sm">
202
+ <li class="flex items-start">
203
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
204
+ <span>Stable Video Diffusion - Local version optimized for RTX 30 series</span>
205
+ </li>
206
+ <li class="flex items-start">
207
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
208
+ <span>Runway ML - Local inference with CUDA 11.7 support</span>
209
+ </li>
210
+ <li class="flex items-start">
211
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
212
+ <span>AnimateDiff - For text-to-video generation</span>
213
+ </li>
214
+ <li class="flex items-start">
215
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
216
+ <span>Video-P2P - For video style transfer</span>
217
+ </li>
218
+ </ul>
219
+ <div class="mt-4 pt-4 border-t border-gray-200">
220
+ <div class="flex justify-between items-center">
221
+ <span class="text-xs text-gray-500">VRAM Usage</span>
222
+ <span class="text-xs font-medium">~18GB on RTX 3090</span>
223
+ </div>
224
+ <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
225
+ <div class="bg-blue-500 h-1.5 rounded-full" style="width: 75%"></div>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </div>
230
+
231
+ <!-- Image Generation -->
232
+ <div class="bg-white rounded-lg shadow overflow-hidden transition-all duration-300 card-hover">
233
+ <div class="gradient-bg p-4 text-white">
234
+ <div class="flex items-center">
235
+ <i class="fas fa-image text-2xl mr-3"></i>
236
+ <h3 class="text-lg font-semibold">Image Generation</h3>
237
+ </div>
238
+ </div>
239
+ <div class="p-4">
240
+ <ul class="space-y-2 text-sm">
241
+ <li class="flex items-start">
242
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
243
+ <span>Stable Diffusion XL 1.0 - Full precision with CUDA 11.7</span>
244
+ </li>
245
+ <li class="flex items-start">
246
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
247
+ <span>Kandinsky 2.2 - For advanced image synthesis</span>
248
+ </li>
249
+ <li class="flex items-start">
250
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
251
+ <span>DeepFloyd IF - Multi-stage text-to-image</span>
252
+ </li>
253
+ <li class="flex items-start">
254
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
255
+ <span>ControlNet - For pose/edge guided generation</span>
256
+ </li>
257
+ </ul>
258
+ <div class="mt-4 pt-4 border-t border-gray-200">
259
+ <div class="flex justify-between items-center">
260
+ <span class="text-xs text-gray-500">VRAM Usage</span>
261
+ <span class="text-xs font-medium">~12GB on RTX 3060</span>
262
+ </div>
263
+ <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
264
+ <div class="bg-purple-500 h-1.5 rounded-full" style="width: 100%"></div>
265
+ </div>
266
+ </div>
267
+ </div>
268
+ </div>
269
+
270
+ <!-- Voice Synthesis -->
271
+ <div class="bg-white rounded-lg shadow overflow-hidden transition-all duration-300 card-hover">
272
+ <div class="gradient-bg p-4 text-white">
273
+ <div class="flex items-center">
274
+ <i class="fas fa-microphone-alt text-2xl mr-3"></i>
275
+ <h3 class="text-lg font-semibold">Voice Synthesis</h3>
276
+ </div>
277
+ </div>
278
+ <div class="p-4">
279
+ <ul class="space-y-2 text-sm">
280
+ <li class="flex items-start">
281
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
282
+ <span>VITS - Variational Inference with CUDA acceleration</span>
283
+ </li>
284
+ <li class="flex items-start">
285
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
286
+ <span>Bark - Text-to-speech with emotion control</span>
287
+ </li>
288
+ <li class="flex items-start">
289
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
290
+ <span>Tortoise TTS - High-quality voice cloning</span>
291
+ </li>
292
+ <li class="flex items-start">
293
+ <i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
294
+ <span>VALL-E - Zero-shot TTS with your voice</span>
295
+ </li>
296
+ </ul>
297
+ <div class="mt-4 pt-4 border-t border-gray-200">
298
+ <div class="flex justify-between items-center">
299
+ <span class="text-xs text-gray-500">VRAM Usage</span>
300
+ <span class="text-xs font-medium">~8GB on either GPU</span>
301
+ </div>
302
+ <div class="w-full bg-gray-200 rounded-full h-1.5 mt-1">
303
+ <div class="bg-pink-500 h-1.5 rounded-full" style="width: 33%"></div>
304
+ </div>
305
+ </div>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ </div>
310
+
311
+ <!-- Download Links -->
312
+ <div class="mb-6 bg-white rounded-lg shadow p-4">
313
+ <h2 class="text-lg font-semibold mb-4">Extension Downloads & Dependencies</h2>
314
+ <div class="space-y-6">
315
+ <!-- Video Generation -->
316
+ <div>
317
+ <h3 class="font-medium text-blue-600 mb-2">Video Generation</h3>
318
+ <ul class="text-sm space-y-1">
319
+ <li>
320
+ <span class="font-medium">Stable Video Diffusion:</span>
321
+ <a href="https://github.com/Stability-AI/generative-models" class="text-blue-500 hover:underline">github.com/Stability-AI/generative-models</a>
322
+ <div class="text-xs text-gray-500 ml-5">Integrated via Python API - loads into RTX 3090 VRAM</div>
323
+ </li>
324
+ <li>
325
+ <span class="font-medium">Runway ML Local:</span>
326
+ <a href="https://github.com/runwayml/local" class="text-blue-500 hover:underline">github.com/runwayml/local</a>
327
+ <div class="text-xs text-gray-500 ml-5">Runs as Docker container with GPU passthrough</div>
328
+ </li>
329
+ <li>
330
+ <span class="font-medium">AnimateDiff:</span>
331
+ <a href="https://github.com/guoyww/AnimateDiff" class="text-blue-500 hover:underline">github.com/guoyww/AnimateDiff</a>
332
+ <div class="text-xs text-gray-500 ml-5">Loaded as ComfyUI custom node</div>
333
+ </li>
334
+ <li class="text-xs text-gray-500 mt-1">Dependencies: FFmpeg, CUDA 11.7, PyTorch 1.13.1 (auto-installed)</li>
335
+ </ul>
336
+ </div>
337
+
338
+ <!-- Image Generation -->
339
+ <div>
340
+ <h3 class="font-medium text-purple-600 mb-2">Image Generation</h3>
341
+ <ul class="text-sm space-y-1">
342
+ <li>
343
+ <span class="font-medium">Stable Diffusion XL:</span>
344
+ <a href="https://github.com/Stability-AI/stablediffusion" class="text-blue-500 hover:underline">github.com/Stability-AI/stablediffusion</a>
345
+ <div class="text-xs text-gray-500 ml-5">Runs in Automatic1111 web UI with --xformers flag</div>
346
+ </li>
347
+ <li>
348
+ <span class="font-medium">Kandinsky 2.2:</span>
349
+ <a href="https://github.com/ai-forever/Kandinsky-2" class="text-blue-500 hover:underline">github.com/ai-forever/Kandinsky-2</a>
350
+ <div class="text-xs text-gray-500 ml-5">Integrated via diffusers pipeline</div>
351
+ </li>
352
+ <li>
353
+ <span class="font-medium">ControlNet:</span>
354
+ <a href="https://github.com/lllyasviel/ControlNet" class="text-blue-500 hover:underline">github.com/lllyasviel/ControlNet</a>
355
+ <div class="text-xs text-gray-500 ml-5">Loaded as extension in web UI</div>
356
+ </li>
357
+ <li class="text-xs text-gray-500 mt-1">Dependencies: OpenCV, xFormers, TorchVision 0.14.1 (pre-configured)</li>
358
+ </ul>
359
+ </div>
360
+
361
+ <!-- Voice Synthesis -->
362
+ <div>
363
+ <h3 class="font-medium text-pink-600 mb-2">Voice Synthesis</h3>
364
+ <ul class="text-sm space-y-1">
365
+ <li>
366
+ <span class="font-medium">VITS:</span>
367
+ <a href="https://github.com/jaywalnut310/vits" class="text-blue-500 hover:underline">github.com/jaywalnut310/vits</a>
368
+ <div class="text-xs text-gray-500 ml-5">Runs in separate FastAPI endpoint</div>
369
+ </li>
370
+ <li>
371
+ <span class="font-medium">Bark:</span>
372
+ <a href="https://github.com/suno-ai/bark" class="text-blue-500 hover:underline">github.com/suno-ai/bark</a>
373
+ <div class="text-xs text-gray-500 ml-5">Loaded on-demand with small VRAM footprint</div>
374
+ </li>
375
+ <li>
376
+ <span class="font-medium">Tortoise TTS:</span>
377
+ <a href="https://github.com/neonbjb/tortoise-tts" class="text-blue-500 hover:underline">github.com/neonbjb/tortoise-tts</a>
378
+ <div class="text-xs text-gray-500 ml-5">Uses dedicated RTX 3060 GPU</div>
379
+ </li>
380
+ <li class="text-xs text-gray-500 mt-1">Dependencies: Librosa, PyTorch Audio, SoundFile (auto-configured)</li>
381
+ </ul>
382
+ </div>
383
+ </div>
384
+ </div>
385
+
386
+ <!-- Quick Actions -->
387
+ <div class="mb-6">
388
+ <h2 class="text-lg font-semibold mb-4">Quick Actions</h2>
389
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-4">
390
+ <button class="flex flex-col items-center justify-center p-4 bg-white rounded-lg shadow hover:shadow-md transition-all">
391
+ <div class="w-10 h-10 rounded-full bg-blue-100 text-blue-600 flex items-center justify-center mb-2">
392
+ <i class="fas fa-font"></i>
393
+ </div>
394
+ <span class="text-sm font-medium">Text Gen</span>
395
+ </button>
396
+ <button class="flex flex-col items-center justify-center p-4 bg-white rounded-lg shadow hover:shadow-md transition-all">
397
+ <div class="w-10 h-10 rounded-full bg-purple-100 text-purple-600 flex items-center justify-center mb-2">
398
+ <i class="fas fa-image"></i>
399
+ </div>
400
+ <span class="text-sm font-medium">Image Gen</span>
401
+ </button>
402
+ <button class="flex flex-col items-center justify-center p-4 bg-white rounded-lg shadow hover:shadow-md transition-all">
403
+ <div class="w-10 h-10 rounded-full bg-green-100 text-green-600 flex items-center justify-center mb-2">
404
+ <i class="fas fa-video"></i>
405
+ </div>
406
+ <span class="text-sm font-medium">Video Gen</span>
407
+ </button>
408
+ <button class="flex flex-col items-center justify-center p-4 bg-white rounded-lg shadow hover:shadow-md transition-all">
409
+ <div class="w-10 h-10 rounded-full bg-red-100 text-red-600 flex items-center justify-center mb-2">
410
+ <i class="fas fa-microphone-alt"></i>
411
+ </div>
412
+ <span class="text-sm font-medium">Voice Gen</span>
413
+ </button>
414
+ </div>
415
+ </div>
416
+
417
+ <!-- Current Tasks -->
418
+ <div class="bg-white rounded-lg shadow p-4">
419
+ <div class="flex items-center justify-between mb-4">
420
+ <h2 class="text-lg font-semibold">Active AI Tasks</h2>
421
+ <button class="text-sm text-blue-600 hover:text-blue-800">View All</button>
422
+ </div>
423
+ <div class="space-y-4">
424
+ <div class="flex items-center p-3 border border-gray-200 rounded-lg">
425
+ <div class="relative mr-4">
426
+ <svg class="w-12 h-12" viewBox="0 0 36 36">
427
+ <path
428
+ d="M18 2.0845
429
+ a 15.9155 15.9155 0 0 1 0 31.831
430
+ a 15.9155 15.9155 0 0 1 0 -31.831"
431
+ fill="none"
432
+ stroke="#eee"
433
+ stroke-width="3"
434
+ />
435
+ <path
436
+ class="progress-ring__circle"
437
+ d="M18 2.0845
438
+ a 15.9155 15.9155 0 0 1 0 31.831
439
+ a 15.9155 15.9155 0 0 1 0 -31.831"
440
+ fill="none"
441
+ stroke="#4f46e5"
442
+ stroke-width="3"
443
+ stroke-dasharray="75, 100"
444
+ />
445
+ </svg>
446
+ <div class="absolute inset-0 flex items-center justify-center text-xs font-bold text-gray-700">75%</div>
447
+ </div>
448
+ <div class="flex-1">
449
+ <div class="flex justify-between">
450
+ <h3 class="text-sm font-medium">Stable Diffusion XL</h3>
451
+ <span class="text-xs text-gray-500">RTX 3090</span>
452
+ </div>
453
+ <p class="text-xs text-gray-500">Generating 4K landscape images (batch of 8)</p>
454
+ </div>
455
+ <button class="ml-2 text-gray-400 hover:text-gray-600">
456
+ <i class="fas fa-ellipsis-v"></i>
457
+ </button>
458
+ </div>
459
+ <div class="flex items-center p-3 border border-gray-200 rounded-lg">
460
+ <div class="relative mr-4">
461
+ <svg class="w-12 h-12" viewBox="0 0 36 36">
462
+ <path
463
+ d="M18 2.0845
464
+ a 15.9155 15.9155 0 0 1 0 31.831
465
+ a 15.9155 15.9155 0 0 1 0 -31.831"
466
+ fill="none"
467
+ stroke="#eee"
468
+ stroke-width="3"
469
+ />
470
+ <path
471
+ class="progress-ring__circle"
472
+ d="M18 2.0845
473
+ a 15.9155 15.9155 0 0 1 0 31.831
474
+ a 15.9155 15.9155 0 0 1 0 -31.831"
475
+ fill="none"
476
+ stroke="#10b981"
477
+ stroke-width="3"
478
+ stroke-dasharray="30, 100"
479
+ />
480
+ </svg>
481
+ <div class="absolute inset-0 flex items-center justify-center text-xs font-bold text-gray-700">30%</div>
482
+ </div>
483
+ <div class="flex-1">
484
+ <div class="flex justify-between">
485
+ <h3 class="text-sm font-medium">Tortoise TTS</h3>
486
+ <span class="text-xs text-gray-500">RTX 3060</span>
487
+ </div>
488
+ <p class="text-xs text-gray-500">Voice cloning from 30s sample</p>
489
+ </div>
490
+ <button class="ml-2 text-gray-400 hover:text-gray-600">
491
+ <i class="fas fa-ellipsis-v"></i>
492
+ </button>
493
+ </div>
494
+ </div>
495
+ </div>
496
+ </div>
497
+ </div>
498
+ </div>
499
+
500
+ <!-- Mobile bottom navigation -->
501
+ <div class="md:hidden fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200">
502
+ <div class="flex justify-around">
503
+ <a href="#" class="flex flex-col items-center justify-center p-3 text-blue-600">
504
+ <i class="fas fa-home mb-1"></i>
505
+ <span class="text-xs">Home</span>
506
+ </a>
507
+ <a href="#" class="flex flex-col items-center justify-center p-3 text-gray-500">
508
+ <i class="fas fa-comment-alt mb-1"></i>
509
+ <span class="text-xs">Text</span>
510
+ </a>
511
+ <a href="#" class="flex flex-col items-center justify-center p-3 text-gray-500">
512
+ <i class="fas fa-image mb-1"></i>
513
+ <span class="text-xs">Image</span>
514
+ </a>
515
+ <a href="#" class="flex flex-col items-center justify-center p-3 text-gray-500">
516
+ <i class="fas fa-video mb-1"></i>
517
+ <span class="text-xs">Video</span>
518
+ </a>
519
+ <a href="#" class="flex flex-col items-center justify-center p-3 text-gray-500">
520
+ <i class="fas fa-cog mb-1"></i>
521
+ <span class="text-xs">Settings</span>
522
+ </a>
523
+ </div>
524
+ </div>
525
+
526
+ <script>
527
+ // Simple script to toggle mobile menu (not implemented fully in this demo)
528
+ document.addEventListener('DOMContentLoaded', function() {
529
+ // This would be for a mobile menu toggle if implemented
530
+ const mobileMenuButton = document.querySelector('.md\\:hidden button');
531
+ if (mobileMenuButton) {
532
+ mobileMenuButton.addEventListener('click', function() {
533
+ console.log('Mobile menu would toggle here');
534
+ });
535
+ }
536
+
537
+ // Simulate progress animation for demo purposes
538
+ const progressCircles = document.querySelectorAll('.progress-ring__circle');
539
+ progressCircles.forEach(circle => {
540
+ const radius = circle.r.baseVal.value;
541
+ const circumference = radius * 2 * Math.PI;
542
+ circle.style.strokeDasharray = `${circumference} ${circumference}`;
543
+ circle.style.strokeDashoffset = circumference;
544
+ });
545
+ });
546
+ </script>
547
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=j4myjohn/chat-bot-extensions" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
548
+ </html>