iyc commited on
Commit
75fabe3
·
verified ·
1 Parent(s): 03c2517

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +439 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: My Ai Prototype
3
- emoji: 🦀
4
- colorFrom: gray
5
- colorTo: yellow
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: my-ai-prototype
3
+ emoji: 🐳
4
+ colorFrom: red
5
+ colorTo: pink
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,439 @@
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>Neural Nexus - AI Connection Hub</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 pulse {
11
+ 0%, 100% { opacity: 0.6; }
12
+ 50% { opacity: 1; }
13
+ }
14
+ .ai-node {
15
+ position: relative;
16
+ transition: all 0.3s ease;
17
+ }
18
+ .ai-node:hover {
19
+ transform: translateY(-5px);
20
+ box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
21
+ }
22
+ .connection-line {
23
+ position: absolute;
24
+ background: linear-gradient(90deg, #3b82f6, #8b5cf6);
25
+ height: 2px;
26
+ transform-origin: left;
27
+ z-index: -1;
28
+ }
29
+ .message-ai {
30
+ background: linear-gradient(135deg, #1e293b, #0f172a);
31
+ border-left: 3px solid #3b82f6;
32
+ }
33
+ .message-user {
34
+ background: linear-gradient(135deg, #1e293b, #0f172a);
35
+ border-left: 3px solid #10b981;
36
+ }
37
+ .typing-indicator span {
38
+ animation: pulse 1.5s infinite ease-in-out;
39
+ }
40
+ .typing-indicator span:nth-child(2) {
41
+ animation-delay: 0.2s;
42
+ }
43
+ .typing-indicator span:nth-child(3) {
44
+ animation-delay: 0.4s;
45
+ }
46
+ .gradient-bg {
47
+ background: linear-gradient(135deg, #0f172a, #1e1b4b);
48
+ }
49
+ .neon-border {
50
+ border: 1px solid transparent;
51
+ background-clip: padding-box;
52
+ position: relative;
53
+ }
54
+ .neon-border::after {
55
+ content: '';
56
+ position: absolute;
57
+ top: -2px; left: -2px;
58
+ right: -2px; bottom: -2px;
59
+ background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
60
+ z-index: -1;
61
+ border-radius: inherit;
62
+ opacity: 0.7;
63
+ }
64
+ </style>
65
+ </head>
66
+ <body class="gradient-bg min-h-screen text-gray-100 font-sans">
67
+ <div class="container mx-auto px-4 py-8">
68
+ <!-- Header -->
69
+ <header class="flex justify-between items-center mb-8">
70
+ <div class="flex items-center space-x-3">
71
+ <div class="w-10 h-10 rounded-full bg-indigo-600 flex items-center justify-center">
72
+ <i class="fas fa-brain text-xl"></i>
73
+ </div>
74
+ <h1 class="text-2xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-blue-400 to-purple-500">
75
+ Neural Nexus
76
+ </h1>
77
+ </div>
78
+ <div class="flex space-x-4">
79
+ <button class="px-4 py-2 rounded-full bg-indigo-700 hover:bg-indigo-600 transition flex items-center space-x-2">
80
+ <i class="fas fa-cog"></i>
81
+ <span>Settings</span>
82
+ </button>
83
+ <button class="px-4 py-2 rounded-full bg-emerald-700 hover:bg-emerald-600 transition flex items-center space-x-2">
84
+ <i class="fas fa-plus"></i>
85
+ <span>New Session</span>
86
+ </button>
87
+ </div>
88
+ </header>
89
+
90
+ <div class="grid grid-cols-1 lg:grid-cols-4 gap-6">
91
+ <!-- AI Connection Panel -->
92
+ <div class="lg:col-span-1 space-y-6">
93
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 neon-border">
94
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
95
+ <i class="fas fa-plug mr-2 text-blue-400"></i>
96
+ Connected AIs
97
+ </h2>
98
+ <div class="space-y-3">
99
+ <div class="ai-node bg-gray-800 p-4 rounded-lg flex items-center space-x-3 cursor-pointer">
100
+ <div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center">
101
+ <i class="fab fa-google text-xs"></i>
102
+ </div>
103
+ <div>
104
+ <h3 class="font-medium">Gemini Pro</h3>
105
+ <p class="text-xs text-gray-400">Google</p>
106
+ </div>
107
+ <div class="ml-auto w-2 h-2 rounded-full bg-green-500 animate-pulse"></div>
108
+ </div>
109
+ <div class="ai-node bg-gray-800 p-4 rounded-lg flex items-center space-x-3 cursor-pointer">
110
+ <div class="w-8 h-8 rounded-full bg-purple-500 flex items-center justify-center">
111
+ <i class="fas fa-robot text-xs"></i>
112
+ </div>
113
+ <div>
114
+ <h3 class="font-medium">GPT-4 Turbo</h3>
115
+ <p class="text-xs text-gray-400">OpenAI</p>
116
+ </div>
117
+ </div>
118
+ <div class="ai-node bg-gray-800 p-4 rounded-lg flex items-center space-x-3 cursor-pointer">
119
+ <div class="w-8 h-8 rounded-full bg-yellow-500 flex items-center justify-center">
120
+ <i class="fas fa-fire text-xs"></i>
121
+ </div>
122
+ <div>
123
+ <h3 class="font-medium">Claude 3</h3>
124
+ <p class="text-xs text-gray-400">Anthropic</p>
125
+ </div>
126
+ </div>
127
+ <div class="ai-node bg-gray-800 p-4 rounded-lg flex items-center space-x-3 cursor-pointer">
128
+ <div class="w-8 h-8 rounded-full bg-red-500 flex items-center justify-center">
129
+ <i class="fas fa-code text-xs"></i>
130
+ </div>
131
+ <div>
132
+ <h3 class="font-medium">Llama 3</h3>
133
+ <p class="text-xs text-gray-400">Meta</p>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ <button class="mt-4 w-full py-2 rounded-lg bg-gray-700 hover:bg-gray-600 transition flex items-center justify-center space-x-2">
138
+ <i class="fas fa-plus"></i>
139
+ <span>Connect AI</span>
140
+ </button>
141
+ </div>
142
+
143
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 neon-border">
144
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
145
+ <i class="fas fa-project-diagram mr-2 text-purple-400"></i>
146
+ Connection Graph
147
+ </h2>
148
+ <div class="relative h-64">
149
+ <div class="absolute inset-0 flex items-center justify-center">
150
+ <div class="w-16 h-16 rounded-full bg-blue-500/20 border-2 border-blue-400 flex items-center justify-center">
151
+ <i class="fas fa-user text-blue-400"></i>
152
+ </div>
153
+ </div>
154
+ <div class="connection-line" style="width: 100px; top: 50%; left: 50%; transform: rotate(30deg);"></div>
155
+ <div class="ai-node absolute top-10 left-20 w-12 h-12 rounded-full bg-purple-500 flex items-center justify-center">
156
+ <i class="fas fa-robot"></i>
157
+ </div>
158
+ <div class="ai-node absolute top-10 right-20 w-12 h-12 rounded-full bg-blue-500 flex items-center justify-center">
159
+ <i class="fab fa-google"></i>
160
+ </div>
161
+ <div class="ai-node absolute bottom-10 left-20 w-12 h-12 rounded-full bg-yellow-500 flex items-center justify-center">
162
+ <i class="fas fa-fire"></i>
163
+ </div>
164
+ <div class="ai-node absolute bottom-10 right-20 w-12 h-12 rounded-full bg-red-500 flex items-center justify-center">
165
+ <i class="fas fa-code"></i>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </div>
170
+
171
+ <!-- Chat and Training Area -->
172
+ <div class="lg:col-span-3 space-y-6">
173
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 neon-border h-[70vh] flex flex-col">
174
+ <div class="flex items-center justify-between mb-6">
175
+ <h2 class="text-lg font-semibold flex items-center">
176
+ <i class="fas fa-comments mr-2 text-emerald-400"></i>
177
+ Multi-AI Conversation
178
+ </h2>
179
+ <div class="flex space-x-2">
180
+ <button class="px-3 py-1 rounded-lg bg-gray-700 hover:bg-gray-600 transition">
181
+ <i class="fas fa-save"></i>
182
+ </button>
183
+ <button class="px-3 py-1 rounded-lg bg-gray-700 hover:bg-gray-600 transition">
184
+ <i class="fas fa-share-alt"></i>
185
+ </button>
186
+ <button class="px-3 py-1 rounded-lg bg-gray-700 hover:bg-gray-600 transition">
187
+ <i class="fas fa-ellipsis-h"></i>
188
+ </button>
189
+ </div>
190
+ </div>
191
+
192
+ <!-- Chat Messages -->
193
+ <div class="flex-1 overflow-y-auto space-y-4 pr-2" id="chat-messages">
194
+ <div class="message-ai p-4 rounded-lg">
195
+ <div class="flex items-start space-x-3">
196
+ <div class="w-8 h-8 rounded-full bg-purple-500 flex items-center justify-center">
197
+ <i class="fas fa-robot text-sm"></i>
198
+ </div>
199
+ <div>
200
+ <p class="font-medium text-purple-400">GPT-4 Turbo</p>
201
+ <p class="mt-1">Hello! I'm GPT-4 Turbo. How can I assist you with your multi-AI collaboration today?</p>
202
+ </div>
203
+ </div>
204
+ </div>
205
+ <div class="message-user p-4 rounded-lg">
206
+ <div class="flex items-start space-x-3">
207
+ <div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center">
208
+ <i class="fas fa-user text-sm"></i>
209
+ </div>
210
+ <div>
211
+ <p class="font-medium text-blue-400">You</p>
212
+ <p class="mt-1">I'd like to create a connection between you and Gemini Pro to work on a code generation task.</p>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ <div class="message-ai p-4 rounded-lg">
217
+ <div class="flex items-start space-x-3">
218
+ <div class="w-8 h-8 rounded-full bg-blue-500 flex items-center justify-center">
219
+ <i class="fab fa-google text-sm"></i>
220
+ </div>
221
+ <div>
222
+ <p class="font-medium text-blue-400">Gemini Pro</p>
223
+ <p class="mt-1">I've established a connection with GPT-4 Turbo. Ready to collaborate on the code generation. What specific requirements do you have?</p>
224
+ </div>
225
+ </div>
226
+ </div>
227
+ <div class="typing-indicator p-4 rounded-lg bg-gray-800/50 w-max">
228
+ <div class="flex space-x-1">
229
+ <span class="w-2 h-2 rounded-full bg-gray-400"></span>
230
+ <span class="w-2 h-2 rounded-full bg-gray-400"></span>
231
+ <span class="w-2 h-2 rounded-full bg-gray-400"></span>
232
+ </div>
233
+ </div>
234
+ </div>
235
+
236
+ <!-- Input Area -->
237
+ <div class="mt-6">
238
+ <div class="flex space-x-3">
239
+ <div class="flex-1 relative">
240
+ <textarea
241
+ class="w-full bg-gray-800 border border-gray-700 rounded-lg px-4 py-3 pr-12 focus:outline-none focus:ring-2 focus:ring-indigo-500 resize-none"
242
+ rows="2"
243
+ placeholder="Message your AI network..."></textarea>
244
+ <div class="absolute right-3 bottom-3 flex space-x-2">
245
+ <button class="text-gray-400 hover:text-gray-200">
246
+ <i class="fas fa-paperclip"></i>
247
+ </button>
248
+ <button class="text-gray-400 hover:text-gray-200">
249
+ <i class="fas fa-code"></i>
250
+ </button>
251
+ </div>
252
+ </div>
253
+ <button class="self-end px-4 py-3 rounded-lg bg-indigo-600 hover:bg-indigo-500 transition">
254
+ <i class="fas fa-paper-plane"></i>
255
+ </button>
256
+ </div>
257
+ <div class="flex justify-between items-center mt-2 text-xs text-gray-400">
258
+ <div class="flex space-x-2">
259
+ <button class="px-2 py-1 rounded bg-gray-800 hover:bg-gray-700">
260
+ <i class="fas fa-magic mr-1"></i> Enhance
261
+ </button>
262
+ <button class="px-2 py-1 rounded bg-gray-800 hover:bg-gray-700">
263
+ <i class="fas fa-brain mr-1"></i> Train
264
+ </button>
265
+ </div>
266
+ <div>
267
+ <span>0/4000 tokens</span>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+
273
+ <!-- Training Panel -->
274
+ <div class="bg-gray-800/50 backdrop-blur-sm rounded-xl p-6 neon-border">
275
+ <h2 class="text-lg font-semibold mb-4 flex items-center">
276
+ <i class="fas fa-graduation-cap mr-2 text-yellow-400"></i>
277
+ AI Training Module
278
+ </h2>
279
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4">
280
+ <div class="col-span-2">
281
+ <div class="bg-gray-800 rounded-lg p-4 h-full">
282
+ <h3 class="font-medium mb-3">Training Data</h3>
283
+ <textarea
284
+ class="w-full bg-gray-900 border border-gray-700 rounded-lg px-4 py-3 h-40 focus:outline-none focus:ring-2 focus:ring-yellow-500 resize-none"
285
+ placeholder="Paste your training data here..."></textarea>
286
+ <div class="flex justify-between mt-3">
287
+ <div class="flex space-x-2">
288
+ <button class="px-3 py-1 rounded bg-gray-700 hover:bg-gray-600">
289
+ <i class="fas fa-upload mr-1"></i> Import
290
+ </button>
291
+ <button class="px-3 py-1 rounded bg-gray-700 hover:bg-gray-600">
292
+ <i class="fas fa-trash mr-1"></i> Clear
293
+ </button>
294
+ </div>
295
+ <div class="text-xs text-gray-400">
296
+ <span>0/10000 tokens</span>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+ <div>
302
+ <div class="bg-gray-800 rounded-lg p-4 h-full">
303
+ <h3 class="font-medium mb-3">Training Parameters</h3>
304
+ <div class="space-y-4">
305
+ <div>
306
+ <label class="block text-sm text-gray-400 mb-1">Learning Rate</label>
307
+ <input type="range" min="0" max="1" step="0.01" value="0.001" class="w-full">
308
+ <div class="flex justify-between text-xs text-gray-400">
309
+ <span>0</span>
310
+ <span>0.001</span>
311
+ <span>1</span>
312
+ </div>
313
+ </div>
314
+ <div>
315
+ <label class="block text-sm text-gray-400 mb-1">Epochs</label>
316
+ <input type="number" value="5" class="w-full bg-gray-900 border border-gray-700 rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
317
+ </div>
318
+ <div>
319
+ <label class="block text-sm text-gray-400 mb-1">Batch Size</label>
320
+ <select class="w-full bg-gray-900 border border-gray-700 rounded-lg px-3 py-2 focus:outline-none focus:ring-2 focus:ring-yellow-500">
321
+ <option>16</option>
322
+ <option>32</option>
323
+ <option selected>64</option>
324
+ <option>128</option>
325
+ </select>
326
+ </div>
327
+ <button class="w-full py-2 rounded-lg bg-yellow-600 hover:bg-yellow-500 transition font-medium">
328
+ <i class="fas fa-play mr-2"></i> Start Training
329
+ </button>
330
+ </div>
331
+ </div>
332
+ </div>
333
+ </div>
334
+ </div>
335
+ </div>
336
+ </div>
337
+ </div>
338
+
339
+ <script>
340
+ // Simple script to handle sending messages
341
+ document.addEventListener('DOMContentLoaded', function() {
342
+ const chatMessages = document.getElementById('chat-messages');
343
+ const messageInput = document.querySelector('textarea');
344
+ const sendButton = document.querySelector('.fa-paper-plane').parentElement;
345
+
346
+ // Function to add a new message
347
+ function addMessage(content, isUser = false) {
348
+ const messageDiv = document.createElement('div');
349
+ messageDiv.className = isUser ? 'message-user p-4 rounded-lg' : 'message-ai p-4 rounded-lg';
350
+
351
+ const aiIcon = isUser ? 'fa-user' : 'fa-robot';
352
+ const aiColor = isUser ? 'bg-blue-500' : 'bg-purple-500';
353
+ const aiName = isUser ? 'You' : 'GPT-4 Turbo';
354
+ const nameColor = isUser ? 'text-blue-400' : 'text-purple-400';
355
+
356
+ messageDiv.innerHTML = `
357
+ <div class="flex items-start space-x-3">
358
+ <div class="w-8 h-8 rounded-full ${aiColor} flex items-center justify-center">
359
+ <i class="fas ${aiIcon} text-sm"></i>
360
+ </div>
361
+ <div>
362
+ <p class="font-medium ${nameColor}">${aiName}</p>
363
+ <p class="mt-1">${content}</p>
364
+ </div>
365
+ </div>
366
+ `;
367
+
368
+ // Remove typing indicator
369
+ const typingIndicator = document.querySelector('.typing-indicator');
370
+ if (typingIndicator) {
371
+ typingIndicator.remove();
372
+ }
373
+
374
+ chatMessages.appendChild(messageDiv);
375
+ chatMessages.scrollTop = chatMessages.scrollHeight;
376
+
377
+ // Add AI response after a delay if it's a user message
378
+ if (isUser) {
379
+ const typingDiv = document.createElement('div');
380
+ typingDiv.className = 'typing-indicator p-4 rounded-lg bg-gray-800/50 w-max';
381
+ typingDiv.innerHTML = `
382
+ <div class="flex space-x-1">
383
+ <span class="w-2 h-2 rounded-full bg-gray-400"></span>
384
+ <span class="w-2 h-2 rounded-full bg-gray-400"></span>
385
+ <span class="w-2 h-2 rounded-full bg-gray-400"></span>
386
+ </div>
387
+ `;
388
+ chatMessages.appendChild(typingDiv);
389
+ chatMessages.scrollTop = chatMessages.scrollHeight;
390
+
391
+ setTimeout(() => {
392
+ const responses = [
393
+ "I've processed your request. Would you like me to connect with Gemini Pro for collaborative analysis?",
394
+ "Interesting perspective. I can enhance this with additional context from my training data.",
395
+ "I've generated a response based on our previous interactions. Let me know if you'd like any modifications.",
396
+ "Working on that now. Connecting to external knowledge bases for more comprehensive information."
397
+ ];
398
+ const randomResponse = responses[Math.floor(Math.random() * responses.length)];
399
+ addMessage(randomResponse, false);
400
+ }, 2000);
401
+ }
402
+ }
403
+
404
+ // Send message on button click
405
+ sendButton.addEventListener('click', function() {
406
+ const message = messageInput.value.trim();
407
+ if (message) {
408
+ addMessage(message, true);
409
+ messageInput.value = '';
410
+ }
411
+ });
412
+
413
+ // Send message on Enter key (but allow Shift+Enter for new lines)
414
+ messageInput.addEventListener('keydown', function(e) {
415
+ if (e.key === 'Enter' && !e.shiftKey) {
416
+ e.preventDefault();
417
+ sendButton.click();
418
+ }
419
+ });
420
+
421
+ // Make AI nodes clickable
422
+ document.querySelectorAll('.ai-node').forEach(node => {
423
+ node.addEventListener('click', function() {
424
+ // Remove active class from all nodes
425
+ document.querySelectorAll('.ai-node').forEach(n => {
426
+ n.classList.remove('ring-2', 'ring-blue-400');
427
+ });
428
+ // Add active class to clicked node
429
+ this.classList.add('ring-2', 'ring-blue-400');
430
+
431
+ // In a real app, this would switch the active AI
432
+ const aiName = this.querySelector('h3').textContent;
433
+ addMessage(`${aiName} is now active and ready for interaction.`, false);
434
+ });
435
+ });
436
+ });
437
+ </script>
438
+ <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=iyc/my-ai-prototype" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
439
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ can you create a web app where you can connect different AIs and be able to chat and train it with a black background