j4myjohn commited on
Commit
14482b3
·
verified ·
1 Parent(s): 6aa90f6

my PC is Device Name AI-PC OS Windows 10 Pro Motherboard MSI Z270 SLI Plus Processor Intel(R) Core(TM) i7-7700K CPU @ 4.20GHz 4.20 GHz Installed RAM 2x 16GB DDR4-2666 32.0 GB (31.9 GB usable) Storage SATA 932 GB SSD CT1000BX500SSD1, M.2 932 GB SSD CT1000P3SSD8 Graphics Cards NVIDIA GeForce RTX 3090 (24 GB), NVIDIA GeForce RTX 3060 (12 GB), Intel(R) HD Graphics 630 (128 MB) System Type 64-bit operating system, x64-based processor can you recommend a local chat bot model that can write code and be a personal AI - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +6 -4
  2. index.html +350 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Coding Bot
3
- emoji: 🐠
4
- colorFrom: green
5
  colorTo: gray
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: coding-bot
3
+ emoji: 🐳
4
+ colorFrom: pink
5
  colorTo: gray
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,350 @@
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 Chatbot Recommendations</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, #a777e3);
12
+ }
13
+ .card-hover {
14
+ transition: all 0.3s ease;
15
+ }
16
+ .card-hover:hover {
17
+ transform: translateY(-5px);
18
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
19
+ }
20
+ .typewriter {
21
+ overflow: hidden;
22
+ border-right: .15em solid #a777e3;
23
+ white-space: nowrap;
24
+ margin: 0 auto;
25
+ letter-spacing: .15em;
26
+ animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
27
+ }
28
+ @keyframes typing {
29
+ from { width: 0 }
30
+ to { width: 100% }
31
+ }
32
+ @keyframes blink-caret {
33
+ from, to { border-color: transparent }
34
+ 50% { border-color: #a777e3; }
35
+ }
36
+ </style>
37
+ </head>
38
+ <body class="bg-gray-100 min-h-screen">
39
+ <div class="gradient-bg text-white py-12 px-4 sm:px-6 lg:px-8">
40
+ <div class="max-w-7xl mx-auto">
41
+ <div class="text-center">
42
+ <h1 class="text-4xl md:text-5xl font-bold mb-4">AI Chatbot Recommendations</h1>
43
+ <p class="text-xl md:text-2xl mb-8">For Your Powerful Development Machine</p>
44
+ <div class="typewriter text-xl font-mono bg-black bg-opacity-20 p-4 rounded-lg inline-block">
45
+ System: i7-7700K | 32GB RAM | RTX 3090 + 3060
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+
51
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
52
+ <div class="mb-12">
53
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">Your System Specifications</h2>
54
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
55
+ <div class="bg-white rounded-lg shadow-md p-6 card-hover">
56
+ <div class="flex items-center mb-4">
57
+ <i class="fas fa-microchip text-3xl text-purple-600 mr-4"></i>
58
+ <h3 class="text-xl font-semibold">Processor</h3>
59
+ </div>
60
+ <p class="text-gray-600">Intel Core i7-7700K @ 4.20GHz (4 cores, 8 threads)</p>
61
+ </div>
62
+ <div class="bg-white rounded-lg shadow-md p-6 card-hover">
63
+ <div class="flex items-center mb-4">
64
+ <i class="fas fa-memory text-3xl text-blue-600 mr-4"></i>
65
+ <h3 class="text-xl font-semibold">Memory</h3>
66
+ </div>
67
+ <p class="text-gray-600">32GB DDR4-2666 (2x16GB)</p>
68
+ </div>
69
+ <div class="bg-white rounded-lg shadow-md p-6 card-hover">
70
+ <div class="flex items-center mb-4">
71
+ <i class="fas fa-gamepad text-3xl text-green-600 mr-4"></i>
72
+ <h3 class="text-xl font-semibold">Graphics</h3>
73
+ </div>
74
+ <p class="text-gray-600">NVIDIA RTX 3090 (24GB) + RTX 3060 (12GB) + Intel HD 630</p>
75
+ </div>
76
+ <div class="bg-white rounded-lg shadow-md p-6 card-hover">
77
+ <div class="flex items-center mb-4">
78
+ <i class="fas fa-hdd text-3xl text-orange-600 mr-4"></i>
79
+ <h3 class="text-xl font-semibold">Storage</h3>
80
+ </div>
81
+ <p class="text-gray-600">2x 1TB SSDs (SATA + M.2 NVMe)</p>
82
+ </div>
83
+ <div class="bg-white rounded-lg shadow-md p-6 card-hover">
84
+ <div class="flex items-center mb-4">
85
+ <i class="fas fa-desktop text-3xl text-red-600 mr-4"></i>
86
+ <h3 class="text-xl font-semibold">OS</h3>
87
+ </div>
88
+ <p class="text-gray-600">Windows 10 Pro (64-bit)</p>
89
+ </div>
90
+ <div class="bg-white rounded-lg shadow-md p-6 card-hover">
91
+ <div class="flex items-center mb-4">
92
+ <i class="fas fa-server text-3xl text-yellow-600 mr-4"></i>
93
+ <h3 class="text-xl font-semibold">Motherboard</h3>
94
+ </div>
95
+ <p class="text-gray-600">MSI Z270 SLI Plus</p>
96
+ </div>
97
+ </div>
98
+ </div>
99
+
100
+ <div class="mb-12">
101
+ <h2 class="text-2xl font-bold text-gray-800 mb-6">Recommended Local AI Models</h2>
102
+ <p class="text-gray-600 mb-8">Based on your powerful hardware, here are the best local chatbot models that can assist with coding and act as a personal AI assistant:</p>
103
+
104
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
105
+ <!-- Model 1 -->
106
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden card-hover">
107
+ <div class="gradient-bg p-6">
108
+ <div class="flex justify-between items-center">
109
+ <h3 class="text-xl font-bold text-white">WizardCoder 34B</h3>
110
+ <span class="bg-white text-purple-600 px-3 py-1 rounded-full text-sm font-semibold">Best Overall</span>
111
+ </div>
112
+ </div>
113
+ <div class="p-6">
114
+ <div class="flex items-center mb-4">
115
+ <i class="fas fa-brain text-2xl text-purple-500 mr-3"></i>
116
+ <span class="font-semibold">34B Parameters</span>
117
+ </div>
118
+ <p class="text-gray-600 mb-4">Specialized for coding tasks with excellent code generation and understanding capabilities.</p>
119
+ <div class="mb-4">
120
+ <h4 class="font-semibold text-gray-700 mb-2">System Requirements:</h4>
121
+ <div class="flex items-center mb-2">
122
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
123
+ <span>RTX 3090 (24GB VRAM) - Can run comfortably</span>
124
+ </div>
125
+ <div class="flex items-center">
126
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
127
+ <span>32GB RAM - More than sufficient</span>
128
+ </div>
129
+ </div>
130
+ <div class="mb-4">
131
+ <h4 class="font-semibold text-gray-700 mb-2">Strengths:</h4>
132
+ <ul class="list-disc list-inside text-gray-600 pl-2">
133
+ <li>Excellent at code generation</li>
134
+ <li>Good at code explanation</li>
135
+ <li>Strong debugging capabilities</li>
136
+ </ul>
137
+ </div>
138
+ <a href="https://huggingface.co/WizardLM/WizardCoder-34B-V1.0" class="inline-block gradient-bg text-white px-4 py-2 rounded-lg font-medium hover:opacity-90 transition">Download Model</a>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Model 2 -->
143
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden card-hover">
144
+ <div class="bg-blue-600 p-6">
145
+ <div class="flex justify-between items-center">
146
+ <h3 class="text-xl font-bold text-white">CodeLlama 13B</h3>
147
+ <span class="bg-white text-blue-600 px-3 py-1 rounded-full text-sm font-semibold">Balanced</span>
148
+ </div>
149
+ </div>
150
+ <div class="p-6">
151
+ <div class="flex items-center mb-4">
152
+ <i class="fas fa-brain text-2xl text-blue-500 mr-3"></i>
153
+ <span class="font-semibold">13B Parameters</span>
154
+ </div>
155
+ <p class="text-gray-600 mb-4">Meta's specialized coding model with good performance at a smaller size than WizardCoder.</p>
156
+ <div class="mb-4">
157
+ <h4 class="font-semibold text-gray-700 mb-2">System Requirements:</h4>
158
+ <div class="flex items-center mb-2">
159
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
160
+ <span>RTX 3060 (12GB VRAM) - Can run well</span>
161
+ </div>
162
+ <div class="flex items-center">
163
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
164
+ <span>32GB RAM - More than enough</span>
165
+ </div>
166
+ </div>
167
+ <div class="mb-4">
168
+ <h4 class="font-semibold text-gray-700 mb-2">Strengths:</h4>
169
+ <ul class="list-disc list-inside text-gray-600 pl-2">
170
+ <li>Good balance of size and capability</li>
171
+ <li>Excellent Python support</li>
172
+ <li>Faster inference than larger models</li>
173
+ </ul>
174
+ </div>
175
+ <a href="https://huggingface.co/codellama/CodeLlama-13b-hf" class="inline-block bg-blue-600 text-white px-4 py-2 rounded-lg font-medium hover:opacity-90 transition">Download Model</a>
176
+ </div>
177
+ </div>
178
+
179
+ <!-- Model 3 -->
180
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden card-hover">
181
+ <div class="bg-green-600 p-6">
182
+ <div class="flex justify-between items-center">
183
+ <h3 class="text-xl font-bold text-white">Mistral 7B</h3>
184
+ <span class="bg-white text-green-600 px-3 py-1 rounded-full text-sm font-semibold">Lightweight</span>
185
+ </div>
186
+ </div>
187
+ <div class="p-6">
188
+ <div class="flex items-center mb-4">
189
+ <i class="fas fa-brain text-2xl text-green-500 mr-3"></i>
190
+ <span class="font-semibold">7B Parameters</span>
191
+ </div>
192
+ <p class="text-gray-600 mb-4">Highly efficient model that punches above its weight class for general AI tasks and coding.</p>
193
+ <div class="mb-4">
194
+ <h4 class="font-semibold text-gray-700 mb-2">System Requirements:</h4>
195
+ <div class="flex items-center mb-2">
196
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
197
+ <span>RTX 3060 (12GB VRAM) - Runs very well</span>
198
+ </div>
199
+ <div class="flex items-center">
200
+ <i class="fas fa-check-circle text-green-500 mr-2"></i>
201
+ <span>16GB RAM minimum - Your 32GB is great</span>
202
+ </div>
203
+ </div>
204
+ <div class="mb-4">
205
+ <h4 class="font-semibold text-gray-700 mb-2">Strengths:</h4>
206
+ <ul class="list-disc list-inside text-gray-600 pl-2">
207
+ <li>Fast response times</li>
208
+ <li>Good general knowledge</li>
209
+ <li>Decent coding capabilities</li>
210
+ </ul>
211
+ </div>
212
+ <a href="https://huggingface.co/mistralai/Mistral-7B-v0.1" class="inline-block bg-green-600 text-white px-4 py-2 rounded-lg font-medium hover:opacity-90 transition">Download Model</a>
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+
218
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden mb-12 card-hover">
219
+ <div class="bg-indigo-600 p-6">
220
+ <h2 class="text-xl font-bold text-white">Implementation Guide</h2>
221
+ </div>
222
+ <div class="p-6">
223
+ <h3 class="text-lg font-semibold mb-4 text-gray-800">How to Run These Models Locally</h3>
224
+
225
+ <div class="mb-6">
226
+ <h4 class="font-medium text-gray-700 mb-2 flex items-center">
227
+ <i class="fas fa-laptop-code text-indigo-500 mr-2"></i>
228
+ Recommended Software:
229
+ </h4>
230
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-4">
231
+ <div class="bg-gray-50 p-4 rounded-lg">
232
+ <h5 class="font-medium mb-2">Text Generation WebUI</h5>
233
+ <p class="text-sm text-gray-600">User-friendly interface for running local models</p>
234
+ <a href="https://github.com/oobabooga/text-generation-webui" class="text-indigo-600 text-sm hover:underline">GitHub Link</a>
235
+ </div>
236
+ <div class="bg-gray-50 p-4 rounded-lg">
237
+ <h5 class="font-medium mb-2">LM Studio</h5>
238
+ <p class="text-sm text-gray-600">Easy-to-use GUI for Windows/Mac</p>
239
+ <a href="https://lmstudio.ai/" class="text-indigo-600 text-sm hover:underline">Official Site</a>
240
+ </div>
241
+ <div class="bg-gray-50 p-4 rounded-lg">
242
+ <h5 class="font-medium mb-2">Ollama</h5>
243
+ <p class="text-sm text-gray-600">Simple local LLM runner</p>
244
+ <a href="https://ollama.ai/" class="text-indigo-600 text-sm hover:underline">Official Site</a>
245
+ </div>
246
+ </div>
247
+ </div>
248
+
249
+ <div class="mb-6">
250
+ <h4 class="font-medium text-gray-700 mb-2 flex items-center">
251
+ <i class="fas fa-terminal text-indigo-500 mr-2"></i>
252
+ Quick Start with Text Generation WebUI:
253
+ </h4>
254
+ <div class="bg-gray-800 rounded-lg p-4 text-gray-100 font-mono text-sm overflow-x-auto">
255
+ <p class="mb-2"># Clone the repository</p>
256
+ <p class="mb-2">git clone https://github.com/oobabooga/text-generation-webui</p>
257
+ <p class="mb-2">cd text-generation-webui</p>
258
+ <p class="mb-2"># Install requirements (recommend using conda)</p>
259
+ <p class="mb-2">conda create -n textgen python=3.10</p>
260
+ <p class="mb-2">conda activate textgen</p>
261
+ <p class="mb-2">pip install -r requirements.txt</p>
262
+ <p class="mb-2"># Download a model (e.g., WizardCoder 34B)</p>
263
+ <p class="mb-2">python download-model.py WizardLM/WizardCoder-34B-V1.0</p>
264
+ <p class="mb-2"># Start the web UI</p>
265
+ <p>python server.py --model WizardLM_WizardCoder-34B-V1.0 --load-in-8bit</p>
266
+ </div>
267
+ </div>
268
+
269
+ <div>
270
+ <h4 class="font-medium text-gray-700 mb-2 flex items-center">
271
+ <i class="fas fa-lightbulb text-indigo-500 mr-2"></i>
272
+ Performance Tips:
273
+ </h4>
274
+ <ul class="list-disc list-inside text-gray-600 pl-2 space-y-2">
275
+ <li>Use <span class="font-mono bg-gray-100 px-1 rounded">--load-in-8bit</span> or <span class="font-mono bg-gray-100 px-1 rounded">--load-in-4bit</span> to reduce VRAM usage</li>
276
+ <li>For WizardCoder 34B, you might need to use GPTQ quantization to fit in 24GB VRAM</li>
277
+ <li>Assign specific GPUs using CUDA_VISIBLE_DEVICES if you want to dedicate one GPU to the model</li>
278
+ <li>Consider using <span class="font-mono bg-gray-100 px-1 rounded">--auto-devices</span> to automatically distribute layers across GPUs</li>
279
+ </ul>
280
+ </div>
281
+ </div>
282
+ </div>
283
+
284
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden mb-12 card-hover">
285
+ <div class="bg-purple-600 p-6">
286
+ <h2 class="text-xl font-bold text-white">Alternative Options</h2>
287
+ </div>
288
+ <div class="p-6">
289
+ <h3 class="text-lg font-semibold mb-4 text-gray-800">Other Models Worth Considering</h3>
290
+
291
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
292
+ <div class="border-l-4 border-purple-500 pl-4">
293
+ <h4 class="font-medium text-gray-800 mb-2">Phind-CodeLlama 34B</h4>
294
+ <p class="text-gray-600 mb-2">Optimized version of CodeLlama fine-tuned by Phind, excellent for coding.</p>
295
+ <a href="https://huggingface.co/Phind/Phind-CodeLlama-34B-v2" class="text-purple-600 text-sm hover:underline">Download Model</a>
296
+ </div>
297
+ <div class="border-l-4 border-blue-500 pl-4">
298
+ <h4 class="font-medium text-gray-800 mb-2">DeepSeek Coder 33B</h4>
299
+ <p class="text-gray-600 mb-2">Powerful coding model with strong multilingual support.</p>
300
+ <a href="https://huggingface.co/deepseek-ai/deepseek-coder-33b-instruct" class="text-blue-600 text-sm hover:underline">Download Model</a>
301
+ </div>
302
+ <div class="border-l-4 border-green-500 pl-4">
303
+ <h4 class="font-medium text-gray-800 mb-2">StarCoder2 15B</h4>
304
+ <p class="text-gray-600 mb-2">Great for code completion tasks with permissive license.</p>
305
+ <a href="https://huggingface.co/bigcode/starcoder2-15b" class="text-green-600 text-sm hover:underline">Download Model</a>
306
+ </div>
307
+ <div class="border-l-4 border-orange-500 pl-4">
308
+ <h4 class="font-medium text-gray-800 mb-2">Llama 3 8B</h4>
309
+ <p class="text-gray-600 mb-2">Meta's latest model with good general capabilities.</p>
310
+ <a href="https://huggingface.co/meta-llama/Meta-Llama-3-8B-Instruct" class="text-orange-600 text-sm hover:underline">Download Model</a>
311
+ </div>
312
+ </div>
313
+ </div>
314
+ </div>
315
+
316
+ <div class="text-center py-8">
317
+ <h2 class="text-2xl font-bold text-gray-800 mb-4">Ready to Set Up Your Local AI Assistant?</h2>
318
+ <p class="text-gray-600 mb-6 max-w-3xl mx-auto">With your powerful hardware, you can run these advanced AI models locally for private, uncensored coding assistance and personal AI companionship.</p>
319
+ <div class="flex flex-col sm:flex-row justify-center gap-4">
320
+ <a href="#" class="gradient-bg text-white px-6 py-3 rounded-lg font-medium hover:opacity-90 transition inline-flex items-center">
321
+ <i class="fas fa-download mr-2"></i> Download Models
322
+ </a>
323
+ <a href="#" class="bg-gray-800 text-white px-6 py-3 rounded-lg font-medium hover:bg-gray-700 transition inline-flex items-center">
324
+ <i class="fas fa-book mr-2"></i> Documentation
325
+ </a>
326
+ </div>
327
+ </div>
328
+ </div>
329
+
330
+ <footer class="bg-gray-800 text-white py-8">
331
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
332
+ <div class="text-center">
333
+ <p>© 2023 AI Chatbot Recommendations. All model links point to their official sources.</p>
334
+ <p class="mt-2 text-gray-400">Your system: i7-7700K | 32GB RAM | RTX 3090 + 3060</p>
335
+ <div class="mt-4 flex justify-center space-x-6">
336
+ <a href="#" class="text-gray-400 hover:text-white">
337
+ <i class="fab fa-github text-xl"></i>
338
+ </a>
339
+ <a href="#" class="text-gray-400 hover:text-white">
340
+ <i class="fab fa-discord text-xl"></i>
341
+ </a>
342
+ <a href="#" class="text-gray-400 hover:text-white">
343
+ <i class="fab fa-twitter text-xl"></i>
344
+ </a>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </footer>
349
+ <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/coding-bot" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
350
+ </html>