JJ404GO commited on
Commit
0eb62f9
·
verified ·
1 Parent(s): 422fa59

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +417 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Llm
3
- emoji: 🏢
4
- colorFrom: indigo
5
- colorTo: purple
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: llm
3
+ emoji: 🐳
4
+ colorFrom: gray
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,417 @@
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>LLM4Law - Legal LLM Benchmarks</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
+ <script>
10
+ tailwind.config = {
11
+ theme: {
12
+ extend: {
13
+ colors: {
14
+ 'legal-blue': '#1a365d',
15
+ 'legal-gold': '#d4af37',
16
+ }
17
+ }
18
+ }
19
+ }
20
+ </script>
21
+ <style>
22
+ .gradient-bg {
23
+ background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
24
+ }
25
+ .table-row-hover:hover {
26
+ background-color: #f7fafc;
27
+ transform: translateY(-2px);
28
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
29
+ }
30
+ .scrollbar-hide::-webkit-scrollbar {
31
+ display: none;
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-gray-50 font-sans">
36
+ <!-- Header -->
37
+ <header class="gradient-bg text-white shadow-lg">
38
+ <div class="container mx-auto px-4 py-6">
39
+ <div class="flex flex-col md:flex-row justify-between items-center">
40
+ <div class="flex items-center mb-4 md:mb-0">
41
+ <i class="fas fa-balance-scale text-3xl mr-3 text-legal-gold"></i>
42
+ <div>
43
+ <h1 class="text-2xl font-bold">LLM4Law</h1>
44
+ <p class="text-sm opacity-80">Legal LLM Benchmarking</p>
45
+ </div>
46
+ </div>
47
+ <nav class="flex space-x-6">
48
+ <a href="#" class="hover:text-legal-gold transition">Home</a>
49
+ <a href="#" class="hover:text-legal-gold transition">Benchmarks</a>
50
+ <a href="#" class="hover:text-legal-gold transition">Methodology</a>
51
+ <a href="#" class="hover:text-legal-gold transition">About</a>
52
+ </nav>
53
+ </div>
54
+ </div>
55
+ </header>
56
+
57
+ <!-- Hero Section -->
58
+ <section class="gradient-bg text-white py-16">
59
+ <div class="container mx-auto px-4 text-center">
60
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Legal LLM Benchmarking</h2>
61
+ <p class="text-xl max-w-3xl mx-auto mb-8">
62
+ Quantitative analysis of local LLMs performance on legal tasks
63
+ </p>
64
+ <div class="flex flex-col md:flex-row justify-center gap-4">
65
+ <button class="bg-legal-gold hover:bg-yellow-600 text-legal-blue font-bold py-3 px-6 rounded-lg transition">
66
+ View Latest Results
67
+ </button>
68
+ <button class="border border-legal-gold hover:bg-white hover:bg-opacity-10 text-white font-bold py-3 px-6 rounded-lg transition">
69
+ Learn About Methodology
70
+ </button>
71
+ </div>
72
+ </div>
73
+ </section>
74
+
75
+ <!-- Main Content -->
76
+ <main class="container mx-auto px-4 py-12">
77
+ <!-- Benchmark Table Section -->
78
+ <section class="mb-16">
79
+ <div class="flex justify-between items-center mb-8">
80
+ <h2 class="text-2xl font-bold text-legal-blue">Legal Task Benchmarks</h2>
81
+ <div class="flex items-center space-x-4">
82
+ <div class="relative">
83
+ <select class="appearance-none bg-white border border-gray-300 rounded-lg pl-4 pr-10 py-2 focus:outline-none focus:ring-2 focus:ring-legal-blue">
84
+ <option>All Models</option>
85
+ <option>Llama 2</option>
86
+ <option>Mistral</option>
87
+ <option>GPT4All</option>
88
+ </select>
89
+ <i class="fas fa-chevron-down absolute right-3 top-3 text-gray-500"></i>
90
+ </div>
91
+ <button class="bg-legal-blue hover:bg-blue-900 text-white px-4 py-2 rounded-lg transition">
92
+ <i class="fas fa-download mr-2"></i> Export Data
93
+ </button>
94
+ </div>
95
+ </div>
96
+
97
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
98
+ <div class="overflow-x-auto scrollbar-hide">
99
+ <table class="min-w-full divide-y divide-gray-200">
100
+ <thead class="bg-gray-50">
101
+ <tr>
102
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
103
+ Model
104
+ </th>
105
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
106
+ Version
107
+ </th>
108
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
109
+ Contract Analysis
110
+ </th>
111
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
112
+ Case Prediction
113
+ </th>
114
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
115
+ Legal Research
116
+ </th>
117
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
118
+ Document Drafting
119
+ </th>
120
+ <th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
121
+ Overall
122
+ </th>
123
+ </tr>
124
+ </thead>
125
+ <tbody class="bg-white divide-y divide-gray-200">
126
+ <!-- Sample Data Rows -->
127
+ <tr class="table-row-hover transition cursor-pointer">
128
+ <td class="px-6 py-4 whitespace-nowrap">
129
+ <div class="flex items-center">
130
+ <div class="flex-shrink-0 h-10 w-10 bg-blue-100 rounded-full flex items-center justify-center">
131
+ <i class="fas fa-robot text-blue-600"></i>
132
+ </div>
133
+ <div class="ml-4">
134
+ <div class="text-sm font-medium text-gray-900">Llama 2</div>
135
+ <div class="text-sm text-gray-500">Meta</div>
136
+ </div>
137
+ </div>
138
+ </td>
139
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
140
+ 7B-chat
141
+ </td>
142
+ <td class="px-6 py-4 whitespace-nowrap">
143
+ <div class="flex items-center">
144
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
145
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 78%"></div>
146
+ </div>
147
+ <span class="ml-2 text-sm font-medium text-gray-700">78%</span>
148
+ </div>
149
+ </td>
150
+ <td class="px-6 py-4 whitespace-nowrap">
151
+ <div class="flex items-center">
152
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
153
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 65%"></div>
154
+ </div>
155
+ <span class="ml-2 text-sm font-medium text-gray-700">65%</span>
156
+ </div>
157
+ </td>
158
+ <td class="px-6 py-4 whitespace-nowrap">
159
+ <div class="flex items-center">
160
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
161
+ <div class="bg-red-500 h-2.5 rounded-full" style="width: 52%"></div>
162
+ </div>
163
+ <span class="ml-2 text-sm font-medium text-gray-700">52%</span>
164
+ </div>
165
+ </td>
166
+ <td class="px-6 py-4 whitespace-nowrap">
167
+ <div class="flex items-center">
168
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
169
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 82%"></div>
170
+ </div>
171
+ <span class="ml-2 text-sm font-medium text-gray-700">82%</span>
172
+ </div>
173
+ </td>
174
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-bold text-legal-blue">
175
+ 72%
176
+ </td>
177
+ </tr>
178
+
179
+ <!-- More rows would go here -->
180
+ <tr class="table-row-hover transition cursor-pointer">
181
+ <td class="px-6 py-4 whitespace-nowrap">
182
+ <div class="flex items-center">
183
+ <div class="flex-shrink-0 h-10 w-10 bg-purple-100 rounded-full flex items-center justify-center">
184
+ <i class="fas fa-cloud text-purple-600"></i>
185
+ </div>
186
+ <div class="ml-4">
187
+ <div class="text-sm font-medium text-gray-900">Mistral</div>
188
+ <div class="text-sm text-gray-500">Mistral AI</div>
189
+ </div>
190
+ </div>
191
+ </td>
192
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
193
+ 7B-v0.1
194
+ </td>
195
+ <td class="px-6 py-4 whitespace-nowrap">
196
+ <div class="flex items-center">
197
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
198
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 85%"></div>
199
+ </div>
200
+ <span class="ml-2 text-sm font-medium text-gray-700">85%</span>
201
+ </div>
202
+ </td>
203
+ <td class="px-6 py-4 whitespace-nowrap">
204
+ <div class="flex items-center">
205
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
206
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 78%"></div>
207
+ </div>
208
+ <span class="ml-2 text-sm font-medium text-gray-700">78%</span>
209
+ </div>
210
+ </td>
211
+ <td class="px-6 py-4 whitespace-nowrap">
212
+ <div class="flex items-center">
213
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
214
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 68%"></div>
215
+ </div>
216
+ <span class="ml-2 text-sm font-medium text-gray-700">68%</span>
217
+ </div>
218
+ </td>
219
+ <td class="px-6 py-4 whitespace-nowrap">
220
+ <div class="flex items-center">
221
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
222
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 88%"></div>
223
+ </div>
224
+ <span class="ml-2 text-sm font-medium text-gray-700">88%</span>
225
+ </div>
226
+ </td>
227
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-bold text-legal-blue">
228
+ 80%
229
+ </td>
230
+ </tr>
231
+
232
+ <tr class="table-row-hover transition cursor-pointer">
233
+ <td class="px-6 py-4 whitespace-nowrap">
234
+ <div class="flex items-center">
235
+ <div class="flex-shrink-0 h-10 w-10 bg-green-100 rounded-full flex items-center justify-center">
236
+ <i class="fas fa-laptop-code text-green-600"></i>
237
+ </div>
238
+ <div class="ml-4">
239
+ <div class="text-sm font-medium text-gray-900">GPT4All</div>
240
+ <div class="text-sm text-gray-500">Nomic AI</div>
241
+ </div>
242
+ </div>
243
+ </td>
244
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
245
+ Falcon-7B
246
+ </td>
247
+ <td class="px-6 py-4 whitespace-nowrap">
248
+ <div class="flex items-center">
249
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
250
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 72%"></div>
251
+ </div>
252
+ <span class="ml-2 text-sm font-medium text-gray-700">72%</span>
253
+ </div>
254
+ </td>
255
+ <td class="px-6 py-4 whitespace-nowrap">
256
+ <div class="flex items-center">
257
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
258
+ <div class="bg-yellow-500 h-2.5 rounded-full" style="width: 70%"></div>
259
+ </div>
260
+ <span class="ml-2 text-sm font-medium text-gray-700">70%</span>
261
+ </div>
262
+ </td>
263
+ <td class="px-6 py-4 whitespace-nowrap">
264
+ <div class="flex items-center">
265
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
266
+ <div class="bg-red-500 h-2.5 rounded-full" style="width: 58%"></div>
267
+ </div>
268
+ <span class="ml-2 text-sm font-medium text-gray-700">58%</span>
269
+ </div>
270
+ </td>
271
+ <td class="px-6 py-4 whitespace-nowrap">
272
+ <div class="flex items-center">
273
+ <div class="w-24 bg-gray-200 rounded-full h-2.5">
274
+ <div class="bg-green-500 h-2.5 rounded-full" style="width: 80%"></div>
275
+ </div>
276
+ <span class="ml-2 text-sm font-medium text-gray-700">80%</span>
277
+ </div>
278
+ </td>
279
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-bold text-legal-blue">
280
+ 70%
281
+ </td>
282
+ </tr>
283
+ </tbody>
284
+ </table>
285
+ </div>
286
+ </div>
287
+ </section>
288
+
289
+ <!-- Methodology Section -->
290
+ <section class="mb-16">
291
+ <h2 class="text-2xl font-bold text-legal-blue mb-6">Benchmark Methodology</h2>
292
+ <div class="grid md:grid-cols-3 gap-8">
293
+ <div class="bg-white p-6 rounded-xl shadow-md">
294
+ <div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
295
+ <i class="fas fa-clipboard-check text-blue-600 text-xl"></i>
296
+ </div>
297
+ <h3 class="text-lg font-semibold mb-2">Task Selection</h3>
298
+ <p class="text-gray-600">
299
+ Carefully curated legal tasks representing real-world scenarios including contract analysis, case prediction, legal research, and document drafting.
300
+ </p>
301
+ </div>
302
+ <div class="bg-white p-6 rounded-xl shadow-md">
303
+ <div class="bg-purple-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
304
+ <i class="fas fa-tasks text-purple-600 text-xl"></i>
305
+ </div>
306
+ <h3 class="text-lg font-semibold mb-2">Evaluation Criteria</h3>
307
+ <p class="text-gray-600">
308
+ Each task is evaluated on accuracy, legal reasoning, citation quality, and practical applicability by a panel of IP attorneys.
309
+ </p>
310
+ </div>
311
+ <div class="bg-white p-6 rounded-xl shadow-md">
312
+ <div class="bg-green-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
313
+ <i class="fas fa-server text-green-600 text-xl"></i>
314
+ </div>
315
+ <h3 class="text-lg font-semibold mb-2">Testing Environment</h3>
316
+ <p class="text-gray-600">
317
+ All models tested on identical hardware (RTX 4090, 64GB RAM) with standardized prompts and temperature settings for fair comparison.
318
+ </p>
319
+ </div>
320
+ </div>
321
+ </section>
322
+
323
+ <!-- Updates Section -->
324
+ <section>
325
+ <h2 class="text-2xl font-bold text-legal-blue mb-6">Latest Updates</h2>
326
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
327
+ <div class="p-6">
328
+ <div class="flex items-start mb-6 pb-6 border-b border-gray-100">
329
+ <div class="bg-legal-blue text-white rounded-lg p-3 mr-4">
330
+ <i class="fas fa-bullhorn text-xl"></i>
331
+ </div>
332
+ <div>
333
+ <h3 class="font-semibold mb-1">New Benchmark: Mistral 7B vs. Llama 2 7B</h3>
334
+ <p class="text-gray-600 mb-2">Added comprehensive comparison between the two leading 7B parameter models on contract analysis tasks.</p>
335
+ <span class="text-sm text-gray-500">Posted: June 15, 2023</span>
336
+ </div>
337
+ </div>
338
+ <div class="flex items-start">
339
+ <div class="bg-legal-gold text-legal-blue rounded-lg p-3 mr-4">
340
+ <i class="fas fa-chart-line text-xl"></i>
341
+ </div>
342
+ <div>
343
+ <h3 class="font-semibold mb-1">Methodology Update</h3>
344
+ <p class="text-gray-600 mb-2">Refined our evaluation criteria for legal research tasks to better assess citation accuracy and relevance.</p>
345
+ <span class="text-sm text-gray-500">Posted: May 28, 2023</span>
346
+ </div>
347
+ </div>
348
+ </div>
349
+ <div class="bg-gray-50 px-6 py-3 text-right">
350
+ <a href="#" class="text-legal-blue font-medium hover:underline">View All Updates →</a>
351
+ </div>
352
+ </div>
353
+ </section>
354
+ </main>
355
+
356
+ <!-- Footer -->
357
+ <footer class="bg-legal-blue text-white py-12">
358
+ <div class="container mx-auto px-4">
359
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
360
+ <div>
361
+ <h3 class="text-lg font-semibold mb-4">LLM4Law</h3>
362
+ <p class="text-gray-300">
363
+ Independent benchmarking of local LLMs for legal applications by IP attorneys.
364
+ </p>
365
+ </div>
366
+ <div>
367
+ <h4 class="text-lg font-semibold mb-4">Navigation</h4>
368
+ <ul class="space-y-2">
369
+ <li><a href="#" class="text-gray-300 hover:text-white transition">Home</a></li>
370
+ <li><a href="#" class="text-gray-300 hover:text-white transition">Benchmarks</a></li>
371
+ <li><a href="#" class="text-gray-300 hover:text-white transition">Methodology</a></li>
372
+ <li><a href="#" class="text-gray-300 hover:text-white transition">About</a></li>
373
+ </ul>
374
+ </div>
375
+ <div>
376
+ <h4 class="text-lg font-semibold mb-4">Resources</h4>
377
+ <ul class="space-y-2">
378
+ <li><a href="#" class="text-gray-300 hover:text-white transition">Dataset</a></li>
379
+ <li><a href="#" class="text-gray-300 hover:text-white transition">Research Papers</a></li>
380
+ <li><a href="#" class="text-gray-300 hover:text-white transition">Model Cards</a></li>
381
+ </ul>
382
+ </div>
383
+ <div>
384
+ <h4 class="text-lg font-semibold mb-4">Connect</h4>
385
+ <div class="flex space-x-4">
386
+ <a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition">
387
+ <i class="fab fa-twitter"></i>
388
+ </a>
389
+ <a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition">
390
+ <i class="fab fa-linkedin-in"></i>
391
+ </a>
392
+ <a href="#" class="bg-white bg-opacity-10 hover:bg-opacity-20 w-10 h-10 rounded-full flex items-center justify-center transition">
393
+ <i class="fab fa-github"></i>
394
+ </a>
395
+ </div>
396
+ <div class="mt-4">
397
+ <a href="mailto:contact@llm4law.com" class="text-gray-300 hover:text-white transition">contact@llm4law.com</a>
398
+ </div>
399
+ </div>
400
+ </div>
401
+ <div class="border-t border-white border-opacity-10 mt-8 pt-8 text-center text-gray-300">
402
+ <p>© 2023 LLM4Law. All rights reserved.</p>
403
+ </div>
404
+ </div>
405
+ </footer>
406
+
407
+ <script>
408
+ // Simple script to demonstrate interactivity
409
+ document.querySelectorAll('tbody tr').forEach(row => {
410
+ row.addEventListener('click', function() {
411
+ // In a real implementation, this would navigate to a detailed model view
412
+ alert('Navigating to detailed view for ' + this.querySelector('td:first-child .text-gray-900').textContent);
413
+ });
414
+ });
415
+ </script>
416
+ <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=JJ404GO/llm" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
417
+ </html>