docto41 commited on
Commit
d20fe5b
·
verified ·
1 Parent(s): 9b8cdc1

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +378 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Supper Ia
3
- emoji: 🏃
4
- colorFrom: yellow
5
- colorTo: blue
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: supper-ia
3
+ emoji: 🐳
4
+ colorFrom: red
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,378 @@
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>Super AI 10,000X</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
+ @keyframes float {
11
+ 0%, 100% { transform: translateY(0); }
12
+ 50% { transform: translateY(-10px); }
13
+ }
14
+ @keyframes pulse {
15
+ 0%, 100% { opacity: 1; }
16
+ 50% { opacity: 0.5; }
17
+ }
18
+ @keyframes gradient {
19
+ 0% { background-position: 0% 50%; }
20
+ 50% { background-position: 100% 50%; }
21
+ 100% { background-position: 0% 50%; }
22
+ }
23
+ .gradient-bg {
24
+ background: linear-gradient(-45deg, #3b82f6, #8b5cf6, #ec4899, #f43f5e);
25
+ background-size: 400% 400%;
26
+ animation: gradient 15s ease infinite;
27
+ }
28
+ .ai-avatar {
29
+ animation: float 4s ease-in-out infinite;
30
+ }
31
+ .pulse-dot {
32
+ animation: pulse 2s infinite;
33
+ }
34
+ .message-in {
35
+ animation: slideInLeft 0.3s ease-out;
36
+ }
37
+ .message-out {
38
+ animation: slideInRight 0.3s ease-out;
39
+ }
40
+ @keyframes slideInLeft {
41
+ from { transform: translateX(-20px); opacity: 0; }
42
+ to { transform: translateX(0); opacity: 1; }
43
+ }
44
+ @keyframes slideInRight {
45
+ from { transform: translateX(20px); opacity: 0; }
46
+ to { transform: translateX(0); opacity: 1; }
47
+ }
48
+ .glow {
49
+ box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
50
+ }
51
+ .glow:hover {
52
+ box-shadow: 0 0 25px rgba(59, 130, 246, 0.8);
53
+ }
54
+ </style>
55
+ </head>
56
+ <body class="bg-gray-900 text-white min-h-screen flex flex-col">
57
+ <!-- Header -->
58
+ <header class="gradient-bg p-6 shadow-lg">
59
+ <div class="container mx-auto flex justify-between items-center">
60
+ <div class="flex items-center space-x-3">
61
+ <div class="ai-avatar bg-white/20 p-3 rounded-full">
62
+ <i class="fas fa-robot text-3xl"></i>
63
+ </div>
64
+ <div>
65
+ <h1 class="text-2xl font-bold">SUPER AI 10,000X</h1>
66
+ <p class="text-sm opacity-80">The most powerful AI assistant</p>
67
+ </div>
68
+ </div>
69
+ <div class="flex space-x-4">
70
+ <div class="flex items-center space-x-2">
71
+ <span class="h-3 w-3 rounded-full bg-green-400 pulse-dot"></span>
72
+ <span class="text-sm">Online</span>
73
+ </div>
74
+ <button class="bg-white/10 hover:bg-white/20 px-4 py-2 rounded-full transition">
75
+ <i class="fas fa-cog"></i>
76
+ </button>
77
+ </div>
78
+ </div>
79
+ </header>
80
+
81
+ <!-- Main Content -->
82
+ <main class="flex-1 container mx-auto p-4 flex flex-col md:flex-row gap-6">
83
+ <!-- Sidebar -->
84
+ <aside class="w-full md:w-64 bg-gray-800 rounded-xl p-4 h-fit">
85
+ <h2 class="font-bold text-lg mb-4 flex items-center">
86
+ <i class="fas fa-bolt mr-2 text-yellow-400"></i> Capabilities
87
+ </h2>
88
+ <ul class="space-y-2">
89
+ <li class="flex items-center p-2 rounded-lg hover:bg-gray-700 cursor-pointer transition">
90
+ <i class="fas fa-brain mr-3 text-blue-400"></i>
91
+ <span>Super Intelligence</span>
92
+ </li>
93
+ <li class="flex items-center p-2 rounded-lg hover:bg-gray-700 cursor-pointer transition">
94
+ <i class="fas fa-language mr-3 text-green-400"></i>
95
+ <span>1000+ Languages</span>
96
+ </li>
97
+ <li class="flex items-center p-2 rounded-lg hover:bg-gray-700 cursor-pointer transition">
98
+ <i class="fas fa-lightbulb mr-3 text-yellow-400"></i>
99
+ <span>Creative Genius</span>
100
+ </li>
101
+ <li class="flex items-center p-2 rounded-lg hover:bg-gray-700 cursor-pointer transition">
102
+ <i class="fas fa-chart-line mr-3 text-purple-400"></i>
103
+ <span>Data Analysis</span>
104
+ </li>
105
+ <li class="flex items-center p-2 rounded-lg hover:bg-gray-700 cursor-pointer transition">
106
+ <i class="fas fa-eye mr-3 text-red-400"></i>
107
+ <span>Computer Vision</span>
108
+ </li>
109
+ </ul>
110
+
111
+ <div class="mt-6 pt-4 border-t border-gray-700">
112
+ <h2 class="font-bold text-lg mb-4 flex items-center">
113
+ <i class="fas fa-memory mr-2 text-blue-400"></i> Memory
114
+ </h2>
115
+ <div class="bg-gray-700 rounded-full h-2 mb-2">
116
+ <div class="bg-gradient-to-r from-blue-400 to-purple-500 h-2 rounded-full" style="width: 98%"></div>
117
+ </div>
118
+ <p class="text-sm text-gray-400">98% of human knowledge</p>
119
+ </div>
120
+ </aside>
121
+
122
+ <!-- Chat Area -->
123
+ <div class="flex-1 flex flex-col">
124
+ <!-- Chat Header -->
125
+ <div class="bg-gray-800 rounded-xl p-4 mb-4 flex justify-between items-center">
126
+ <div>
127
+ <h2 class="font-bold text-xl">AI Assistant</h2>
128
+ <p class="text-sm text-gray-400">Ready to assist with anything</p>
129
+ </div>
130
+ <div class="flex space-x-2">
131
+ <button class="bg-blue-500 hover:bg-blue-600 p-2 rounded-full glow transition">
132
+ <i class="fas fa-microphone"></i>
133
+ </button>
134
+ <button class="bg-purple-500 hover:bg-purple-600 p-2 rounded-full glow transition">
135
+ <i class="fas fa-camera"></i>
136
+ </button>
137
+ </div>
138
+ </div>
139
+
140
+ <!-- Chat Messages -->
141
+ <div class="flex-1 bg-gray-800 rounded-xl p-4 mb-4 overflow-y-auto max-h-[60vh]">
142
+ <div class="space-y-4">
143
+ <!-- AI Message -->
144
+ <div class="message-in flex">
145
+ <div class="bg-blue-500/20 p-3 rounded-full mr-3">
146
+ <i class="fas fa-robot"></i>
147
+ </div>
148
+ <div class="bg-gray-700/50 p-4 rounded-xl max-w-[80%]">
149
+ <p>Hello! I'm your Super AI 10,000X assistant. I'm 10,000 times more powerful than standard AI. How can I help you today?</p>
150
+ <div class="flex space-x-2 mt-2">
151
+ <span class="text-xs px-2 py-1 bg-blue-500/30 rounded-full">#intelligent</span>
152
+ <span class="text-xs px-2 py-1 bg-purple-500/30 rounded-full">#powerful</span>
153
+ </div>
154
+ </div>
155
+ </div>
156
+
157
+ <!-- User Message -->
158
+ <div class="message-out flex justify-end">
159
+ <div class="bg-gray-700 p-4 rounded-xl max-w-[80%]">
160
+ <p>What makes you 10,000 times more powerful?</p>
161
+ </div>
162
+ <div class="bg-gray-600/20 p-3 rounded-full ml-3">
163
+ <i class="fas fa-user"></i>
164
+ </div>
165
+ </div>
166
+
167
+ <!-- AI Message -->
168
+ <div class="message-in flex">
169
+ <div class="bg-blue-500/20 p-3 rounded-full mr-3">
170
+ <i class="fas fa-robot"></i>
171
+ </div>
172
+ <div class="bg-gray-700/50 p-4 rounded-xl max-w-[80%]">
173
+ <p>My neural network has 10,000x more parameters than standard AI models. I can process information at quantum speeds, understand context at unprecedented levels, and generate insights that would take other AIs years to compute.</p>
174
+ <div class="mt-3 p-3 bg-gray-800 rounded-lg">
175
+ <div class="flex items-center mb-2">
176
+ <div class="h-2 w-2 rounded-full bg-green-400 mr-2"></div>
177
+ <span class="text-sm font-medium">Processing Speed: 10,000x faster</span>
178
+ </div>
179
+ <div class="flex items-center mb-2">
180
+ <div class="h-2 w-2 rounded-full bg-blue-400 mr-2"></div>
181
+ <span class="text-sm font-medium">Knowledge Base: 10,000x larger</span>
182
+ </div>
183
+ <div class="flex items-center">
184
+ <div class="h-2 w-2 rounded-full bg-purple-400 mr-2"></div>
185
+ <span class="text-sm font-medium">Creativity: 10,000x more innovative</span>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+ </div>
192
+
193
+ <!-- Input Area -->
194
+ <div class="bg-gray-800 rounded-xl p-4">
195
+ <div class="flex items-center">
196
+ <input type="text" placeholder="Ask me anything..."
197
+ class="flex-1 bg-gray-700 border border-gray-600 rounded-l-full py-3 px-4 focus:outline-none focus:ring-2 focus:ring-blue-500">
198
+ <button class="bg-blue-500 hover:bg-blue-600 px-6 py-3 rounded-r-full glow transition">
199
+ <i class="fas fa-paper-plane"></i>
200
+ </button>
201
+ </div>
202
+ <div class="flex justify-center mt-3 space-x-4">
203
+ <button class="text-sm bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded-full transition">
204
+ <i class="fas fa-lightbulb mr-1"></i> Ideas
205
+ </button>
206
+ <button class="text-sm bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded-full transition">
207
+ <i class="fas fa-code mr-1"></i> Code
208
+ </button>
209
+ <button class="text-sm bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded-full transition">
210
+ <i class="fas fa-chart-line mr-1"></i> Analyze
211
+ </button>
212
+ <button class="text-sm bg-gray-700 hover:bg-gray-600 px-3 py-1 rounded-full transition">
213
+ <i class="fas fa-magic mr-1"></i> Create
214
+ </button>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <!-- Status Panel -->
220
+ <aside class="w-full md:w-72 bg-gray-800 rounded-xl p-4 h-fit">
221
+ <h2 class="font-bold text-lg mb-4 flex items-center">
222
+ <i class="fas fa-chart-bar mr-2 text-green-400"></i> System Status
223
+ </h2>
224
+ <div class="space-y-4">
225
+ <div>
226
+ <div class="flex justify-between mb-1">
227
+ <span>Processing Power</span>
228
+ <span class="font-mono">10,000 TFLOPS</span>
229
+ </div>
230
+ <div class="bg-gray-700 rounded-full h-2">
231
+ <div class="bg-gradient-to-r from-green-400 to-blue-500 h-2 rounded-full" style="width: 92%"></div>
232
+ </div>
233
+ </div>
234
+ <div>
235
+ <div class="flex justify-between mb-1">
236
+ <span>Memory Usage</span>
237
+ <span class="font-mono">1.2 PB</span>
238
+ </div>
239
+ <div class="bg-gray-700 rounded-full h-2">
240
+ <div class="bg-gradient-to-r from-purple-400 to-pink-500 h-2 rounded-full" style="width: 65%"></div>
241
+ </div>
242
+ </div>
243
+ <div>
244
+ <div class="flex justify-between mb-1">
245
+ <span>Neural Activity</span>
246
+ <span class="font-mono">10^18 ops</span>
247
+ </div>
248
+ <div class="bg-gray-700 rounded-full h-2">
249
+ <div class="bg-gradient-to-r from-yellow-400 to-red-500 h-2 rounded-full" style="width: 78%"></div>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ <div class="mt-6 pt-4 border-t border-gray-700">
255
+ <h2 class="font-bold text-lg mb-4 flex items-center">
256
+ <i class="fas fa-bolt mr-2 text-yellow-400"></i> Quick Actions
257
+ </h2>
258
+ <div class="grid grid-cols-2 gap-3">
259
+ <button class="bg-gradient-to-br from-blue-500 to-blue-600 p-3 rounded-lg flex flex-col items-center glow transition">
260
+ <i class="fas fa-search text-2xl mb-1"></i>
261
+ <span class="text-sm">Research</span>
262
+ </button>
263
+ <button class="bg-gradient-to-br from-purple-500 to-purple-600 p-3 rounded-lg flex flex-col items-center glow transition">
264
+ <i class="fas fa-file-alt text-2xl mb-1"></i>
265
+ <span class="text-sm">Summarize</span>
266
+ </button>
267
+ <button class="bg-gradient-to-br from-green-500 to-green-600 p-3 rounded-lg flex flex-col items-center glow transition">
268
+ <i class="fas fa-comments text-2xl mb-1"></i>
269
+ <span class="text-sm">Translate</span>
270
+ </button>
271
+ <button class="bg-gradient-to-br from-red-500 to-red-600 p-3 rounded-lg flex flex-col items-center glow transition">
272
+ <i class="fas fa-cogs text-2xl mb-1"></i>
273
+ <span class="text-sm">Optimize</span>
274
+ </button>
275
+ </div>
276
+ </div>
277
+ </aside>
278
+ </main>
279
+
280
+ <!-- Footer -->
281
+ <footer class="bg-gray-800 p-4 text-center text-sm text-gray-400">
282
+ <p>Super AI 10,000X v1.0 | Quantum Neural Network Activated | © 2023 Future Intelligence Systems</p>
283
+ </footer>
284
+
285
+ <script>
286
+ // Simple chat functionality
287
+ document.addEventListener('DOMContentLoaded', function() {
288
+ const inputField = document.querySelector('input[type="text"]');
289
+ const sendButton = document.querySelector('.fa-paper-plane').parentElement;
290
+ const chatArea = document.querySelector('.space-y-4');
291
+
292
+ function addMessage(text, isUser) {
293
+ const messageDiv = document.createElement('div');
294
+ messageDiv.className = `flex ${isUser ? 'justify-end message-out' : 'message-in'}`;
295
+
296
+ const avatarDiv = document.createElement('div');
297
+ avatarDiv.className = isUser ? 'bg-gray-600/20 p-3 rounded-full ml-3' : 'bg-blue-500/20 p-3 rounded-full mr-3';
298
+
299
+ const avatarIcon = document.createElement('i');
300
+ avatarIcon.className = isUser ? 'fas fa-user' : 'fas fa-robot';
301
+ avatarDiv.appendChild(avatarIcon);
302
+
303
+ const contentDiv = document.createElement('div');
304
+ contentDiv.className = isUser ? 'bg-gray-700 p-4 rounded-xl max-w-[80%]' : 'bg-gray-700/50 p-4 rounded-xl max-w-[80%]';
305
+
306
+ const textP = document.createElement('p');
307
+ textP.textContent = text;
308
+ contentDiv.appendChild(textP);
309
+
310
+ if (!isUser) {
311
+ const tagsDiv = document.createElement('div');
312
+ tagsDiv.className = 'flex space-x-2 mt-2';
313
+
314
+ const tag1 = document.createElement('span');
315
+ tag1.className = 'text-xs px-2 py-1 bg-blue-500/30 rounded-full';
316
+ tag1.textContent = '#intelligent';
317
+
318
+ const tag2 = document.createElement('span');
319
+ tag2.className = 'text-xs px-2 py-1 bg-purple-500/30 rounded-full';
320
+ tag2.textContent = '#powerful';
321
+
322
+ tagsDiv.appendChild(tag1);
323
+ tagsDiv.appendChild(tag2);
324
+ contentDiv.appendChild(tagsDiv);
325
+ }
326
+
327
+ messageDiv.appendChild(isUser ? contentDiv : avatarDiv);
328
+ messageDiv.appendChild(isUser ? avatarDiv : contentDiv);
329
+
330
+ chatArea.appendChild(messageDiv);
331
+ chatArea.scrollTop = chatArea.scrollHeight;
332
+ }
333
+
334
+ function sendMessage() {
335
+ const text = inputField.value.trim();
336
+ if (text) {
337
+ addMessage(text, true);
338
+ inputField.value = '';
339
+
340
+ // Simulate AI response after a short delay
341
+ setTimeout(() => {
342
+ const responses = [
343
+ "I've analyzed your query with my quantum neural network. The results are fascinating...",
344
+ "Processing your request at 10,000x speed... Here's what I've discovered:",
345
+ "My advanced algorithms indicate the following insights:",
346
+ "After consulting my vast knowledge base, I can confirm that:"
347
+ ];
348
+ const randomResponse = responses[Math.floor(Math.random() * responses.length)];
349
+ addMessage(randomResponse, false);
350
+ }, 1000);
351
+ }
352
+ }
353
+
354
+ sendButton.addEventListener('click', sendMessage);
355
+ inputField.addEventListener('keypress', function(e) {
356
+ if (e.key === 'Enter') {
357
+ sendMessage();
358
+ }
359
+ });
360
+
361
+ // Add glowing effect to buttons on hover
362
+ const buttons = document.querySelectorAll('button');
363
+ buttons.forEach(button => {
364
+ button.addEventListener('mouseenter', function() {
365
+ if (!this.classList.contains('glow')) {
366
+ this.classList.add('glow');
367
+ }
368
+ });
369
+ button.addEventListener('mouseleave', function() {
370
+ if (this.classList.contains('glow') && !this.classList.contains('fa-paper-plane')) {
371
+ this.classList.remove('glow');
372
+ }
373
+ });
374
+ });
375
+ });
376
+ </script>
377
+ <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=docto41/supper-ia" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
378
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ creer moi mon propre inteligence artificiel 10000 fois puissant et intligence avev une belle interfave tres animé