drzeeIslam commited on
Commit
58868c5
·
verified ·
1 Parent(s): b5d2dab

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +461 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Nelsonbot
3
- emoji: 🏢
4
- colorFrom: indigo
5
- colorTo: indigo
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: nelsonbot
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: blue
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,461 @@
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>NelsonGPT - Pediatric Medical Assistant</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 fadeIn {
11
+ from { opacity: 0; transform: translateY(10px); }
12
+ to { opacity: 1; transform: translateY(0); }
13
+ }
14
+
15
+ .message-fade-in {
16
+ animation: fadeIn 0.3s ease-out forwards;
17
+ }
18
+
19
+ .glow-effect {
20
+ box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
21
+ }
22
+
23
+ .sidebar {
24
+ transition: transform 0.3s ease-in-out;
25
+ }
26
+
27
+ .sidebar-hidden {
28
+ transform: translateX(-100%);
29
+ }
30
+
31
+ .textarea-auto-resize {
32
+ resize: none;
33
+ overflow-y: hidden;
34
+ }
35
+
36
+ .markdown-content h1 {
37
+ font-size: 1.5rem;
38
+ font-weight: bold;
39
+ margin: 1rem 0;
40
+ }
41
+
42
+ .markdown-content h2 {
43
+ font-size: 1.25rem;
44
+ font-weight: bold;
45
+ margin: 0.75rem 0;
46
+ }
47
+
48
+ .markdown-content p {
49
+ margin: 0.5rem 0;
50
+ }
51
+
52
+ .markdown-content ul, .markdown-content ol {
53
+ margin: 0.5rem 0;
54
+ padding-left: 1.5rem;
55
+ }
56
+
57
+ .markdown-content li {
58
+ margin: 0.25rem 0;
59
+ }
60
+
61
+ .markdown-content code {
62
+ background-color: #2a2a2a;
63
+ padding: 0.2rem 0.4rem;
64
+ border-radius: 0.25rem;
65
+ font-family: monospace;
66
+ }
67
+
68
+ .markdown-content pre {
69
+ background-color: #2a2a2a;
70
+ padding: 0.75rem;
71
+ border-radius: 0.5rem;
72
+ overflow-x: auto;
73
+ margin: 0.75rem 0;
74
+ }
75
+
76
+ .markdown-content a {
77
+ color: #60a5fa;
78
+ text-decoration: underline;
79
+ }
80
+
81
+ .markdown-content strong {
82
+ font-weight: bold;
83
+ }
84
+
85
+ .markdown-content em {
86
+ font-style: italic;
87
+ }
88
+
89
+ .splash-screen {
90
+ position: fixed;
91
+ top: 0;
92
+ left: 0;
93
+ right: 0;
94
+ bottom: 0;
95
+ display: flex;
96
+ flex-direction: column;
97
+ justify-content: center;
98
+ align-items: center;
99
+ z-index: 9999;
100
+ background-color: #121212;
101
+ }
102
+
103
+ .dot-flashing {
104
+ position: relative;
105
+ width: 10px;
106
+ height: 10px;
107
+ border-radius: 5px;
108
+ background-color: #f2f2f2;
109
+ color: #f2f2f2;
110
+ animation: dotFlashing 1s infinite linear alternate;
111
+ animation-delay: 0.5s;
112
+ }
113
+
114
+ .dot-flashing::before, .dot-flashing::after {
115
+ content: '';
116
+ display: inline-block;
117
+ position: absolute;
118
+ top: 0;
119
+ width: 10px;
120
+ height: 10px;
121
+ border-radius: 5px;
122
+ background-color: #f2f2f2;
123
+ color: #f2f2f2;
124
+ }
125
+
126
+ .dot-flashing::before {
127
+ left: -15px;
128
+ animation: dotFlashing 1s infinite alternate;
129
+ animation-delay: 0s;
130
+ }
131
+
132
+ .dot-flashing::after {
133
+ left: 15px;
134
+ animation: dotFlashing 1s infinite alternate;
135
+ animation-delay: 1s;
136
+ }
137
+
138
+ @keyframes dotFlashing {
139
+ 0% {
140
+ background-color: #f2f2f2;
141
+ }
142
+ 50%, 100% {
143
+ background-color: rgba(242, 242, 242, 0.2);
144
+ }
145
+ }
146
+ </style>
147
+ </head>
148
+ <body class="bg-[#121212] text-[#f2f2f2] h-screen flex flex-col">
149
+ <!-- Splash Screen -->
150
+ <div id="splashScreen" class="splash-screen">
151
+ <h1 class="text-3xl font-bold mb-4">NelsonGPT</h1>
152
+ <div class="dot-flashing"></div>
153
+ </div>
154
+
155
+ <!-- Main App (initially hidden) -->
156
+ <div id="appContainer" class="flex flex-col h-full hidden">
157
+ <!-- Top Bar -->
158
+ <div class="bg-[#121212] p-4 border-b border-[#2a2a2a] flex items-center sticky top-0 z-10">
159
+ <button id="menuButton" class="mr-4 text-[#f2f2f2]">
160
+ <i class="fas fa-bars text-xl"></i>
161
+ </button>
162
+ <h1 class="text-xl font-bold">NelsonGPT</h1>
163
+ </div>
164
+
165
+ <!-- Sidebar -->
166
+ <div id="sidebar" class="sidebar sidebar-hidden fixed inset-y-0 left-0 w-64 bg-[#1e1e1e] z-20 overflow-y-auto">
167
+ <div class="p-4 border-b border-[#2a2a2a]">
168
+ <button id="newChatButton" class="w-full bg-[#2a2a2a] hover:bg-[#3a3a3a] text-[#f2f2f2] py-2 px-4 rounded flex items-center">
169
+ <i class="fas fa-plus mr-2"></i> New Chat
170
+ </button>
171
+ </div>
172
+
173
+ <div class="p-4 border-b border-[#2a2a2a]">
174
+ <h2 class="font-bold mb-2">Chat History</h2>
175
+ <div id="chatHistory" class="space-y-2">
176
+ <!-- Chat history items will be added here -->
177
+ </div>
178
+ </div>
179
+
180
+ <div class="p-4 border-b border-[#2a2a2a]">
181
+ <h2 class="font-bold mb-2">Settings</h2>
182
+ <div class="flex items-center justify-between mb-2">
183
+ <span>Show Timestamps</span>
184
+ <label class="relative inline-flex items-center cursor-pointer">
185
+ <input id="timestampToggle" type="checkbox" class="sr-only peer" checked>
186
+ <div class="w-11 h-6 bg-gray-700 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-blue-600"></div>
187
+ </label>
188
+ </div>
189
+ <div class="flex items-center justify-between">
190
+ <span>Show Citations</span>
191
+ <label class="relative inline-flex items-center cursor-pointer">
192
+ <input id="citationToggle" type="checkbox" class="sr-only peer" checked>
193
+ <div class="w-11 h-6 bg-gray-700 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-blue-600"></div>
194
+ </label>
195
+ </div>
196
+ </div>
197
+
198
+ <div class="p-4">
199
+ <button id="aboutButton" class="text-[#f2f2f2] hover:text-blue-400">
200
+ <i class="fas fa-info-circle mr-2"></i> About NelsonGPT
201
+ </button>
202
+ </div>
203
+ </div>
204
+
205
+ <!-- Overlay for sidebar -->
206
+ <div id="sidebarOverlay" class="hidden fixed inset-0 bg-black bg-opacity-50 z-10"></div>
207
+
208
+ <!-- Chat Container -->
209
+ <div id="chatContainer" class="flex-1 overflow-y-auto p-4 space-y-6">
210
+ <!-- Welcome message -->
211
+ <div class="flex items-start">
212
+ <div class="w-8 h-8 rounded-full bg-[#2a2a2a] flex items-center justify-center mr-3">
213
+ <i class="fas fa-baby text-sm"></i>
214
+ </div>
215
+ <div class="max-w-[90%] md:max-w-[80%] lg:max-w-[70%] bg-[#212121] glow-effect rounded-lg p-4">
216
+ <div class="markdown-content">
217
+ <h2>Welcome to NelsonGPT</h2>
218
+ <p>I'm your evidence-based pediatric medical assistant, powered by the <strong>Nelson Textbook of Pediatrics</strong>.</p>
219
+ <p>How can I help you today? Here are some examples:</p>
220
+ <ul>
221
+ <li>What's the treatment for bronchiolitis in a 6-month-old?</li>
222
+ <li>Calculate the amoxicillin dose for a 12kg child</li>
223
+ <li>Differential diagnosis for fever and rash in a toddler</li>
224
+ </ul>
225
+ </div>
226
+ <div class="text-xs text-gray-400 mt-2 citation">(Nelson, pg. 1-10)</div>
227
+ </div>
228
+ </div>
229
+
230
+ <!-- Messages will be added here dynamically -->
231
+ </div>
232
+
233
+ <!-- Input Area -->
234
+ <div class="p-4 border-t border-[#2a2a2a] bg-[#121212] sticky bottom-0">
235
+ <div class="flex items-end">
236
+ <textarea id="messageInput" class="textarea-auto-resize flex-1 bg-[#1e1e1e] text-[#f2f2f2] rounded-lg p-3 focus:outline-none focus:ring-2 focus:ring-blue-500" rows="1" placeholder="Ask a pediatric question..."></textarea>
237
+ <button id="sendButton" class="ml-2 w-10 h-10 bg-blue-600 hover:bg-blue-700 disabled:bg-[#2a2a2a] disabled:text-[#5a5a5a] rounded-full flex items-center justify-center transition-colors duration-200" disabled>
238
+ <i class="fas fa-paper-plane"></i>
239
+ </button>
240
+ </div>
241
+ <div class="text-xs text-gray-500 mt-2 text-center">
242
+ NelsonGPT may produce inaccurate information. Always verify with clinical judgment.
243
+ </div>
244
+ </div>
245
+
246
+ <!-- About Modal -->
247
+ <div id="aboutModal" class="hidden fixed inset-0 bg-black bg-opacity-50 z-30 flex items-center justify-center">
248
+ <div class="bg-[#1e1e1e] rounded-lg p-6 max-w-md w-full mx-4">
249
+ <div class="flex justify-between items-center mb-4">
250
+ <h2 class="text-xl font-bold">About NelsonGPT</h2>
251
+ <button id="closeAboutModal" class="text-gray-400 hover:text-white">
252
+ <i class="fas fa-times"></i>
253
+ </button>
254
+ </div>
255
+ <div class="markdown-content">
256
+ <p>NelsonGPT is an evidence-based pediatric medical assistant powered by the <strong>Nelson Textbook of Pediatrics</strong>.</p>
257
+ <p>Features:</p>
258
+ <ul>
259
+ <li>Evidence-based answers grounded in Nelson's content</li>
260
+ <li>Drug dose calculator</li>
261
+ <li>Symptom analysis and differential diagnosis</li>
262
+ <li>Emergency protocols</li>
263
+ <li>Citation-aware responses</li>
264
+ </ul>
265
+ <p>Version: 1.0.0</p>
266
+ <p>Developed by Loveable Dev</p>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </div>
271
+
272
+ <script>
273
+ document.addEventListener('DOMContentLoaded', function() {
274
+ // Hide splash screen after 2 seconds
275
+ setTimeout(() => {
276
+ document.getElementById('splashScreen').classList.add('hidden');
277
+ document.getElementById('appContainer').classList.remove('hidden');
278
+ }, 2000);
279
+
280
+ // Sidebar toggle
281
+ const menuButton = document.getElementById('menuButton');
282
+ const sidebar = document.getElementById('sidebar');
283
+ const sidebarOverlay = document.getElementById('sidebarOverlay');
284
+
285
+ menuButton.addEventListener('click', () => {
286
+ sidebar.classList.toggle('sidebar-hidden');
287
+ sidebarOverlay.classList.toggle('hidden');
288
+ });
289
+
290
+ sidebarOverlay.addEventListener('click', () => {
291
+ sidebar.classList.add('sidebar-hidden');
292
+ sidebarOverlay.classList.add('hidden');
293
+ });
294
+
295
+ // About modal
296
+ const aboutButton = document.getElementById('aboutButton');
297
+ const aboutModal = document.getElementById('aboutModal');
298
+ const closeAboutModal = document.getElementById('closeAboutModal');
299
+
300
+ aboutButton.addEventListener('click', () => {
301
+ aboutModal.classList.remove('hidden');
302
+ });
303
+
304
+ closeAboutModal.addEventListener('click', () => {
305
+ aboutModal.classList.add('hidden');
306
+ });
307
+
308
+ // Auto-resize textarea
309
+ const messageInput = document.getElementById('messageInput');
310
+ const sendButton = document.getElementById('sendButton');
311
+
312
+ messageInput.addEventListener('input', function() {
313
+ this.style.height = 'auto';
314
+ this.style.height = (this.scrollHeight) + 'px';
315
+
316
+ // Enable/disable send button based on input
317
+ sendButton.disabled = this.value.trim() === '';
318
+ });
319
+
320
+ // Send message on Enter (Shift+Enter for new line)
321
+ messageInput.addEventListener('keydown', function(e) {
322
+ if (e.key === 'Enter' && !e.shiftKey) {
323
+ e.preventDefault();
324
+ if (this.value.trim() !== '') {
325
+ sendMessage();
326
+ }
327
+ }
328
+ });
329
+
330
+ sendButton.addEventListener('click', sendMessage);
331
+
332
+ // New chat button
333
+ document.getElementById('newChatButton').addEventListener('click', () => {
334
+ // Clear chat container except welcome message
335
+ const chatContainer = document.getElementById('chatContainer');
336
+ const welcomeMessage = chatContainer.children[0];
337
+ chatContainer.innerHTML = '';
338
+ chatContainer.appendChild(welcomeMessage);
339
+
340
+ // Close sidebar
341
+ sidebar.classList.add('sidebar-hidden');
342
+ sidebarOverlay.classList.add('hidden');
343
+
344
+ // Add to chat history
345
+ addToChatHistory("New Chat");
346
+ });
347
+
348
+ // Function to send message
349
+ function sendMessage() {
350
+ const message = messageInput.value.trim();
351
+ if (message === '') return;
352
+
353
+ // Add user message to chat
354
+ addMessageToChat('user', message);
355
+
356
+ // Clear input
357
+ messageInput.value = '';
358
+ messageInput.style.height = 'auto';
359
+ sendButton.disabled = true;
360
+
361
+ // Simulate assistant response after delay
362
+ setTimeout(() => {
363
+ const assistantResponse = generateResponse(message);
364
+ addMessageToChat('assistant', assistantResponse.text, assistantResponse.citation);
365
+ }, 1000);
366
+ }
367
+
368
+ // Function to add message to chat
369
+ function addMessageToChat(role, content, citation = null) {
370
+ const chatContainer = document.getElementById('chatContainer');
371
+ const messageDiv = document.createElement('div');
372
+ messageDiv.classList.add('flex', 'items-start', 'message-fade-in');
373
+
374
+ if (role === 'user') {
375
+ messageDiv.classList.add('justify-end');
376
+ messageDiv.innerHTML = `
377
+ <div class="max-w-[90%] md:max-w-[80%] lg:max-w-[70%] bg-[#2a2a2a] rounded-lg p-4">
378
+ <div class="markdown-content">${content}</div>
379
+ </div>
380
+ <div class="w-8 h-8 rounded-full bg-[#2a2a2a] flex items-center justify-center ml-3">
381
+ <i class="fas fa-user text-sm"></i>
382
+ </div>
383
+ `;
384
+ } else {
385
+ messageDiv.classList.add('justify-start');
386
+ messageDiv.innerHTML = `
387
+ <div class="w-8 h-8 rounded-full bg-[#2a2a2a] flex items-center justify-center mr-3">
388
+ <i class="fas fa-baby text-sm"></i>
389
+ </div>
390
+ <div class="max-w-[90%] md:max-w-[80%] lg:max-w-[70%] bg-[#212121] glow-effect rounded-lg p-4">
391
+ <div class="markdown-content">${content}</div>
392
+ ${citation ? `<div class="text-xs text-gray-400 mt-2 citation">${citation}</div>` : ''}
393
+ </div>
394
+ `;
395
+ }
396
+
397
+ chatContainer.appendChild(messageDiv);
398
+ chatContainer.scrollTop = chatContainer.scrollHeight;
399
+
400
+ // Add to chat history if it's the first message in the conversation
401
+ if (role === 'user' && chatContainer.children.length === 1) {
402
+ addToChatHistory(content);
403
+ }
404
+ }
405
+
406
+ // Function to add to chat history
407
+ function addToChatHistory(content) {
408
+ const chatHistory = document.getElementById('chatHistory');
409
+ const historyItem = document.createElement('div');
410
+ historyItem.classList.add('cursor-pointer', 'hover:text-blue-400', 'truncate');
411
+ historyItem.textContent = content.length > 30 ? content.substring(0, 30) + '...' : content;
412
+ chatHistory.appendChild(historyItem);
413
+ }
414
+
415
+ // Function to generate response (simulated)
416
+ function generateResponse(message) {
417
+ // This is a simplified simulation - in a real app, this would call your backend API
418
+ const responses = [
419
+ {
420
+ text: "The treatment for bronchiolitis in infants is primarily supportive. Key recommendations from Nelson's include:\n\n- **Oxygen therapy** for SpO2 < 90%\n- **Nasal suctioning** as needed\n- **Hydration** with IV fluids if oral intake is inadequate\n- **No routine use** of bronchodilators or corticosteroids\n\nMonitor for signs of respiratory distress and consider hospitalization for high-risk infants.",
421
+ citation: "(Nelson, pg. 455-460)"
422
+ },
423
+ {
424
+ text: "For a 12kg child, the standard amoxicillin dose is:\n\n- **Mild to moderate infection**: 25-50 mg/kg/day divided q12h\n - For 12kg: 150-300mg q12h\n\n- **Severe infection**: 80-90 mg/kg/day divided q12h\n - For 12kg: 480-540mg q12h\n\nAlways confirm dosing with local guidelines and consider renal function.",
425
+ citation: "(Nelson, pg. 1205)"
426
+ },
427
+ {
428
+ text: "Common differential diagnoses for fever and rash in toddlers include:\n\n1. **Viral exanthems** (most common)\n - Roseola\n - Hand-foot-and-mouth disease\n - Fifth disease\n\n2. **Bacterial infections**\n - Scarlet fever\n - Meningococcemia (urgent!)\n\n3. **Allergic reactions**\n - Drug eruptions\n - Urticaria\n\nKey questions:\n- Duration of fever?\n- Rash distribution/pattern?\n- Associated symptoms?",
429
+ citation: "(Nelson, pg. 890-895)"
430
+ },
431
+ {
432
+ text: "The management of febrile seizures includes:\n\n1. **Acute management**\n - Protect from injury\n - Position on side\n - Time the seizure\n - Only use rescue meds if >5 minutes\n\n2. **Evaluation**\n - Focused history and physical\n - Consider LP if <12 months or meningeal signs\n - Routine labs/imaging not needed for simple febrile seizures\n\n3. **Parent education**\n - Recurrence risk ~30%\n - No long-term neurodevelopmental impact",
433
+ citation: "(Nelson, pg. 3200-3205)"
434
+ }
435
+ ];
436
+
437
+ // Find the most relevant response based on keywords
438
+ const lowerMessage = message.toLowerCase();
439
+ if (lowerMessage.includes('bronchiolitis')) return responses[0];
440
+ if (lowerMessage.includes('amoxicillin') || lowerMessage.includes('dose')) return responses[1];
441
+ if (lowerMessage.includes('fever') && lowerMessage.includes('rash')) return responses[2];
442
+ if (lowerMessage.includes('seizure')) return responses[3];
443
+
444
+ // Default response
445
+ return {
446
+ text: "Thank you for your question. Based on Nelson's Textbook of Pediatrics, I can provide information on pediatric conditions, treatments, and guidelines. Could you please provide more details about the specific clinical scenario you're inquiring about?",
447
+ citation: "(Nelson, pg. 1-10)"
448
+ };
449
+ }
450
+
451
+ // Toggle citations based on settings
452
+ document.getElementById('citationToggle').addEventListener('change', function() {
453
+ const citations = document.querySelectorAll('.citation');
454
+ citations.forEach(citation => {
455
+ citation.style.display = this.checked ? 'block' : 'none';
456
+ });
457
+ });
458
+ });
459
+ </script>
460
+ <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=drzeeIslam/nelsonbot" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
461
+ </html>