Docfile commited on
Commit
a9f41f0
·
verified ·
1 Parent(s): 1a68234

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +398 -1051
templates/index.html CHANGED
@@ -1,1092 +1,439 @@
1
  <!DOCTYPE html>
2
  <html lang="fr">
3
  <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Mariam AI</title>
7
- <!-- Tailwind CSS via CDN -->
8
- <script src="https://cdn.tailwindcss.com?plugins=forms,typography"></script>
9
- <!-- Font Awesome pour les icônes -->
10
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
11
- <!-- Google Fonts -->
12
- <link rel="preconnect" href="https://fonts.googleapis.com">
13
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
14
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
15
- <!-- Favicon (Emoji amélioré) -->
16
- <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✨</text></svg>">
17
- <script>
18
- tailwind.config = {
19
- darkMode: 'class',
20
- theme: {
21
- extend: {
22
- fontFamily: {
23
- sans: ['Inter', 'system-ui', 'sans-serif'],
24
- mono: ['"JetBrains Mono"', 'monospace']
25
- },
26
- colors: {
27
- primary: { 50: '#f0f9ff', 100: '#e0f2fe', 200: '#bae6fd', 300: '#7dd3fc', 400: '#38bdf8', 500: '#0ea5e9', 600: '#0284c7', 700: '#0369a1', 800: '#075985', 900: '#0c4a6e' },
28
- secondary: { 50: '#f8fafc', 100: '#f1f5f9', 200: '#e2e8f0', 300: '#cbd5e1', 400: '#94a3b8', 500: '#64748b', 600: '#475569', 700: '#334155', 800: '#1e293b', 900: '#0f172a' },
29
- accent: { 50: '#fdf4ff', 100: '#fae8ff', 200: '#f5d0fe', 300: '#f0abfc', 400: '#e879f9', 500: '#d946ef', 600: '#c026d3', 700: '#a21caf', 800: '#86198f', 900: '#701a75' }
30
- },
31
- animation: { 'bounce-slow': 'bounce 2s infinite', 'pulse-slow': 'pulse 3s infinite', 'typing': 'typing 1.2s steps(3) infinite' },
32
- keyframes: { typing: { '0%': { width: '0.15em' }, '50%': { width: '0.7em' }, '100%': { width: '0.15em' } } }
33
  }
34
- }
35
- }
36
- </script>
37
- <style>
38
- html {
39
- scroll-behavior: smooth;
40
- overflow-x: hidden; /* Empêche le scroll horizontal global */
41
- }
42
- body {
43
- font-family: 'Inter', sans-serif;
44
- transition: background-color 0.3s ease, color 0.3s ease;
45
- overflow-x: hidden; /* Empêche le scroll horizontal du body */
46
- }
47
- .chat-layout {
48
- min-height: calc(100vh - 64px);
49
- display: grid;
50
- grid-template-rows: 1fr auto;
51
- }
52
- ::-webkit-scrollbar {
53
- width: 5px;
54
- height: 5px;
55
- }
56
- ::-webkit-scrollbar-track {
57
- background: transparent;
58
- }
59
- ::-webkit-scrollbar-thumb {
60
- background: #cbd5e1;
61
- border-radius: 5px;
62
- }
63
- .dark ::-webkit-scrollbar-thumb {
64
- background: #475569;
65
- }
66
- ::-webkit-scrollbar-thumb:hover {
67
- background: #94a3b8;
68
- }
69
- .dark ::-webkit-scrollbar-thumb:hover {
70
- background: #64748b;
71
- }
72
- .message-bubble {
73
- position: relative;
74
- max-width: 85%;
75
- border-radius: 1rem;
76
- padding: 0.875rem 1rem;
77
- line-height: 1.5;
78
- animation: message-fade-in 0.3s ease-out;
79
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
80
- transition: transform 0.2s ease, box-shadow 0.2s ease;
81
- }
82
- .message-bubble:hover {
83
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
84
- }
85
- .dark .message-bubble {
86
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
87
- }
88
- .dark .message-bubble:hover {
89
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.3);
90
- }
91
- .user-message {
92
- border-bottom-right-radius: 0.125rem;
93
- align-self: flex-end;
94
- background: linear-gradient(to bottom right, #3b82f6, #2563eb);
95
- color: white;
96
- }
97
- .assistant-message {
98
- border-bottom-left-radius: 0.125rem;
99
- align-self: flex-start;
100
- }
101
- .dark .assistant-message {
102
- background-color: #1e293b;
103
- color: #e2e8f0;
104
- border-color: #334155;
105
- }
106
- @keyframes message-fade-in {
107
- from { opacity: 0; transform: translateY(10px); }
108
- to { opacity: 1; transform: translateY(0); }
109
- }
110
- @keyframes pulse-fade {
111
- 0%, 100% { opacity: 0.5; }
112
- 50% { opacity: 1; }
113
- }
114
- .typing-indicator {
115
- display: inline-flex;
116
- align-items: center;
117
- margin-left: 0.5rem;
118
- }
119
- .typing-dot {
120
- width: 0.5rem;
121
- height: 0.5rem;
122
- border-radius: 50%;
123
- background-color: currentColor;
124
- opacity: 0.7;
125
- margin: 0 0.1rem;
126
- }
127
- .typing-dot:nth-child(1) { animation: pulse-fade 1.2s 0s infinite; }
128
- .typing-dot:nth-child(2) { animation: pulse-fade 1.2s 0.2s infinite; }
129
- .typing-dot:nth-child(3) { animation: pulse-fade 1.2s 0.4s infinite; }
130
- .dark body {
131
- background-color: #0f172a;
132
- color: #e2e8f0;
133
- }
134
- .tooltip {
135
- position: relative;
136
- }
137
- .tooltip .tooltip-text {
138
- visibility: hidden;
139
- width: max-content;
140
- max-width: 200px;
141
- background-color: #1e293b;
142
- color: #f8fafc;
143
- text-align: center;
144
- border-radius: 6px;
145
- padding: 0.375rem 0.625rem;
146
- position: absolute;
147
- z-index: 1;
148
- bottom: 125%;
149
- left: 50%;
150
- transform: translateX(-50%);
151
- opacity: 0;
152
- transition: opacity 0.3s, visibility 0.3s;
153
- font-size: 0.75rem;
154
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
155
- pointer-events: none;
156
- }
157
- .dark .tooltip .tooltip-text {
158
- background-color: #475569;
159
- color: #f1f5f9;
160
- }
161
- .tooltip .tooltip-text::after {
162
- content: "";
163
- position: absolute;
164
- top: 100%;
165
- left: 50%;
166
- margin-left: -5px;
167
- border-width: 5px;
168
- border-style: solid;
169
- border-color: #1e293b transparent transparent transparent;
170
- }
171
- .dark .tooltip .tooltip-text::after {
172
- border-color: #475569 transparent transparent transparent;
173
- }
174
- .tooltip:hover .tooltip-text {
175
- visibility: visible;
176
- opacity: 1;
177
- }
178
- .copy-btn {
179
- position: absolute;
180
- top: 0.5rem;
181
- right: 0.5rem;
182
- opacity: 0;
183
- transition: opacity 0.2s ease, background-color 0.2s ease;
184
- z-index: 2;
185
- }
186
- .message-bubble:hover .copy-btn {
187
- opacity: 1;
188
- }
189
- .file-preview {
190
- max-width: 300px;
191
- margin: 0.5rem auto;
192
- position: relative;
193
- overflow: hidden;
194
- border-radius: 0.5rem;
195
- transition: transform 0.2s ease;
196
- }
197
- .file-preview:hover {
198
- transform: scale(1.02);
199
- }
200
- .file-preview img {
201
- width: 100%;
202
- height: auto;
203
- display: block;
204
- object-fit: cover;
205
- }
206
- .chip {
207
- display: inline-flex;
208
- align-items: center;
209
- background: #e0f2fe;
210
- border-radius: 9999px;
211
- padding: 0.25rem 0.75rem;
212
- font-size: 0.75rem;
213
- font-weight: 500;
214
- color: #0369a1;
215
- transition: all 0.2s ease;
216
- }
217
- .chip .chip-icon { margin-right: 0.25rem; }
218
- .chip .chip-close {
219
- margin-left: 0.25rem;
220
- cursor: pointer;
221
- opacity: 0.7;
222
- transition: opacity 0.2s ease;
223
- }
224
- .chip .chip-close:hover { opacity: 1; }
225
- .dark .chip {
226
- background: #0c4a6e;
227
- color: #7dd3fc;
228
- }
229
- .toggle-switch {
230
- position: relative;
231
- display: inline-block;
232
- width: 2.5rem;
233
- height: 1.25rem;
234
- }
235
- .toggle-switch input {
236
- opacity: 0;
237
- width: 0;
238
- height: 0;
239
- }
240
- .toggle-slider {
241
- position: absolute;
242
- cursor: pointer;
243
- top: 0;
244
- left: 0;
245
- right: 0;
246
- bottom: 0;
247
- background-color: #cbd5e1;
248
- transition: .4s;
249
- border-radius: 1.25rem;
250
- }
251
- .toggle-slider:before {
252
- position: absolute;
253
- content: "";
254
- height: 0.875rem;
255
- width: 0.875rem;
256
- left: 0.25rem;
257
- bottom: 0.1875rem;
258
- background-color: white;
259
- transition: .4s;
260
- border-radius: 50%;
261
- }
262
- input:checked + .toggle-slider {
263
- background-color: #0ea5e9;
264
- }
265
- input:focus + .toggle-slider {
266
- box-shadow: 0 0 1px #0ea5e9;
267
- }
268
- input:checked + .toggle-slider:before {
269
- transform: translateX(1.125rem);
270
- }
271
- .dark .toggle-slider {
272
- background-color: #475569;
273
- }
274
- .dark input:checked + .toggle-slider {
275
- background-color: #38bdf8;
276
- }
277
- .chat-input {
278
- transition: all 0.3s ease;
279
- border-color: #e2e8f0;
280
- }
281
- .chat-input:focus {
282
- border-color: #38bdf8;
283
- box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
284
- }
285
- .dark .chat-input {
286
- background-color: #1e293b;
287
- color: #f1f5f9;
288
- border-color: #334155;
289
- }
290
- .dark .chat-input:focus {
291
- border-color: #38bdf8;
292
- box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
293
- }
294
- pre {
295
- position: relative;
296
- background-color: #f8fafc;
297
- border-radius: 0.5rem;
298
- margin: 1rem 0;
299
- padding: 1.25rem 1rem;
300
- overflow-x: auto;
301
- }
302
- .dark pre {
303
- background-color: #1e293b;
304
- color: #e2e8f0;
305
- }
306
- code {
307
- font-family: 'JetBrains Mono', monospace;
308
- font-size: 0.875rem;
309
- }
310
- .code-copy-btn {
311
- position: absolute;
312
- top: 0.5rem;
313
- right: 0.5rem;
314
- opacity: 0;
315
- transition: opacity 0.2s ease;
316
- }
317
- pre:hover .code-copy-btn {
318
- opacity: 0.7;
319
- }
320
- /* Amélioration de l'affichage des tableaux Markdown */
321
- .table-wrapper {
322
- width: 100%;
323
- overflow-x: auto;
324
- margin: 1rem 0;
325
- border: 1px solid #e2e8f0;
326
- border-radius: 0.5rem;
327
- }
328
- .dark .table-wrapper {
329
- border-color: #334155;
330
- }
331
- .prose table {
332
- width: 100%;
333
- min-width: 100%;
334
- border-collapse: collapse;
335
- margin: 0;
336
- }
337
- .prose table th,
338
- .prose table td {
339
- border: 1px solid #e2e8f0;
340
- padding: 0.5rem 0.75rem;
341
- text-align: left;
342
- border-top: none;
343
- border-left: none;
344
- border-right: none;
345
- }
346
- .prose table th {
347
- border-bottom-width: 2px;
348
- }
349
- .dark .prose table th,
350
- .dark .prose table td {
351
- border-color: #334155;
352
- }
353
- .prose table thead {
354
- background-color: #f8fafc;
355
- font-weight: 600;
356
- }
357
- .dark .prose table thead {
358
- background-color: #1e293b;
359
- }
360
- .prose table tbody tr:nth-child(even) {
361
- background-color: #f8fafc;
362
- }
363
- .dark .prose table tbody tr:nth-child(even) {
364
- background-color: #1e293b;
365
- }
366
- /* Pour le textarea qui s'adapte au contenu */
367
- .chat-textarea {
368
- resize: none;
369
- min-height: 44px;
370
- max-height: 200px;
371
- overflow-y: auto;
372
- line-height: 1.5;
373
- width: 100%;
374
- border-radius: 9999px;
375
- padding-top: 0.625rem;
376
- padding-bottom: 0.625rem;
377
- padding-left: 1rem;
378
- padding-right: 3rem;
379
- box-sizing: border-box;
380
- }
381
- /* Ajustements responsive */
382
- @media (max-width: 640px) {
383
- .message-bubble {
384
- max-width: 90%;
385
- padding: 0.75rem 0.875rem;
386
- }
387
- .chat-textarea {
388
- max-height: 120px;
389
- font-size: 0.95rem;
390
- min-height: 40px;
391
- padding-top: 0.5rem;
392
- padding-bottom: 0.5rem;
393
- }
394
- .prose table {
395
- min-width: 0;
396
- font-size: 0.85rem;
397
- }
398
- .prose table th,
399
- .prose table td {
400
- padding: 0.375rem 0.5rem;
401
- }
402
- .send-button-wrapper {
403
- padding-right: 0.25rem;
404
- }
405
- .chat-textarea {
406
- padding-right: 2.75rem;
407
- }
408
- #send-button {
409
- width: 32px;
410
- height: 32px;
411
- padding: 0;
412
- display: inline-flex;
413
- align-items: center;
414
- justify-content: center;
415
- }
416
- #send-button i {
417
- font-size: 0.9rem;
418
- }
419
- }
420
- /* Container pour le textarea et le bouton */
421
- .input-wrapper {
422
- position: relative;
423
- display: flex;
424
- align-items: flex-end;
425
- }
426
- .send-button-wrapper {
427
- position: absolute;
428
- right: 0.5rem;
429
- bottom: 0.5rem;
430
- }
431
- </style>
432
- </head>
433
- <body class="bg-gray-50 text-gray-900 antialiased">
434
- <!-- Header -->
435
- <header class="bg-gradient-to-r from-primary-600 to-primary-800 text-white py-3 px-4 shadow-md sticky top-0 z-10">
436
- <div class="max-w-4xl mx-auto flex justify-between items-center">
437
- <!-- Logo & Titre -->
438
- <div class="flex items-center space-x-2">
439
- <img src="https://mariam-241.vercel.app/static/image/logoboma.png" alt="Logo Mariam AI" class="h-8 sm:h-10 object-contain">
440
- <h1 class="text-xl font-bold">Mariam AI</h1>
441
- </div>
442
- <!-- Actions -->
443
- <div class="flex items-center space-x-2 sm:space-x-4">
444
- <button id="theme-toggle" class="p-2 rounded-full hover:bg-primary-700/50 transition-colors duration-200 tooltip" aria-label="Changer de thème">
445
- <i class="fa-solid fa-moon dark:hidden"></i>
446
- <i class="fa-solid fa-sun hidden dark:inline"></i>
447
- <span class="tooltip-text">Mode clair/sombre</span>
448
- </button>
449
- <form action="/clear" method="POST" id="clear-form">
450
- <button type="submit" class="flex items-center bg-red-500 hover:bg-red-600 text-white text-xs font-semibold py-1.5 px-3 rounded-full transition duration-200 focus:outline-none focus:ring-2 focus:ring-red-400 focus:ring-opacity-75 tooltip">
451
- <i class="fa-solid fa-trash-can mr-1.5"></i>
452
- <span class="hidden sm:inline">Effacer</span>
453
- <span class="tooltip-text">Effacer la conversation</span>
454
- </button>
455
- </form>
456
- </div>
457
- </div>
458
- </header>
459
- <!-- Main Container -->
460
- <main class="max-w-4xl mx-auto chat-layout">
461
- <!-- Conteneur des messages -->
462
- <section id="chat-messages" class="flex flex-col space-y-6 p-4 overflow-y-auto">
463
- <!-- Chargement de l'historique -->
464
- <div id="history-loading" class="text-center py-10">
465
- <div class="inline-flex items-center px-4 py-2 bg-primary-50 text-primary-700 rounded-lg dark:bg-primary-900/30 dark:text-primary-300">
466
- <svg class="animate-spin h-5 w-5 mr-3" viewBox="0 0 24 24">
467
- <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
468
- <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
469
- </svg>
470
- <span>Chargement de la conversation...</span>
471
- </div>
472
- </div>
473
- <!-- Indicateur de chargement pour les réponses -->
474
- <div id="loading-indicator" class="flex items-start space-x-2 hidden">
475
- <div class="w-8 h-8 rounded-full bg-primary-100 flex items-center justify-center flex-shrink-0 dark:bg-primary-900/50">
476
- <span class="text-lg">✨</span>
477
- </div>
478
- <div class="message-bubble assistant-message bg-secondary-50 text-secondary-900 border border-secondary-200 flex items-center">
479
- <span>Mariam réfléchit</span>
480
- <div class="typing-indicator">
481
- <span class="typing-dot"></span>
482
- <span class="typing-dot"></span>
483
- <span class="typing-dot"></span>
484
- </div>
485
- </div>
486
- </div>
487
- </section>
488
- <!-- Conteneur du bas -->
489
- <div class="border-t border-gray-200 dark:border-gray-700">
490
- <!-- Zone d'erreur -->
491
- <div id="error-message" class="bg-red-100 border-l-4 border-red-500 text-red-700 p-4 dark:bg-red-900/30 dark:text-red-300 dark:border-red-600 hidden" role="alert">
492
- <div class="flex">
493
- <div class="flex-shrink-0"><i class="fa-solid fa-circle-exclamation"></i></div>
494
- <div class="ml-3"><p class="text-sm font-medium" id="error-text">Le message d'erreur détaillé ira ici.</p></div>
495
- <button class="ml-auto" id="dismiss-error"><i class="fa-solid fa-xmark"></i></button>
496
- </div>
497
- </div>
498
- <!-- Zone de prévisualisation -->
499
- <div id="preview-area" class="px-4 py-2 bg-gray-50 dark:bg-gray-800/50 hidden">
500
- <div id="file-preview" class="hidden"></div>
501
- </div>
502
- <!-- Barre d'options -->
503
- <div class="flex items-center justify-between flex-wrap gap-y-2 px-4 py-2 bg-gray-100 dark:bg-gray-800/80 text-sm text-gray-600 dark:text-gray-300">
504
- <div class="flex items-center space-x-4 flex-wrap gap-y-2">
505
- <label class="flex items-center cursor-pointer tooltip">
506
- <span class="mr-2 text-xs sm:text-sm font-medium"><i class="fa-solid fa-globe mr-1.5"></i><span class="hidden sm:inline">Recherche Web</span></span>
507
- <span class="toggle-switch">
508
- <input type="checkbox" id="web_search_toggle" name="web_search" value="true">
509
- <span class="toggle-slider"></span>
510
- </span>
511
- <span class="tooltip-text">Activer la recherche web</span>
512
- </label>
513
- <label class="flex items-center cursor-pointer tooltip">
514
- <span class="mr-2 text-xs sm:text-sm font-medium text-accent-700 dark:text-accent-300">
515
- <i class="fa-solid fa-brain mr-1.5"></i>
516
- <span class="hidden sm:inline">Avancé</span>
517
- <span id="advanced-cooldown-timer" class="text-xs ml-1 hidden"></span>
518
- </span>
519
- <span class="toggle-switch">
520
- <input type="checkbox" id="advanced_reasoning_toggle" name="advanced_reasoning" value="true">
521
- <span class="toggle-slider"></span>
522
- </span>
523
- <span class="tooltip-text">Raisonnement avancé (1 fois/min)</span>
524
- </label>
525
- </div>
526
- <div class="flex items-center space-x-2">
527
- <label for="file_upload" class="cursor-pointer flex items-center text-primary-600 hover:text-primary-700 dark:text-primary-400 dark:hover:text-primary-300 tooltip">
528
- <i class="fa-solid fa-paperclip"></i>
529
- <span class="ml-1.5 hidden sm:inline">Fichier</span>
530
- <input type="file" id="file_upload" name="file" class="hidden" accept=".txt,.pdf,.png,.jpg,.jpeg">
531
- <span class="tooltip-text">Joindre (txt, pdf, image)</span>
532
- </label>
533
- <div id="file-chip" class="chip hidden">
534
- <i class="fa-solid fa-file chip-icon"></i>
535
- <span id="file-name" class="truncate max-w-[100px] sm:max-w-[120px]"></span>
536
- <i id="clear-file" class="fa-solid fa-xmark chip-close"></i>
537
- </div>
538
- </div>
539
- </div>
540
- <!-- Formulaire de chat -->
541
- <form id="chat-form" class="p-3 sm:p-4 bg-white dark:bg-gray-900">
542
- <div class="input-wrapper">
543
- <textarea
544
- id="prompt"
545
- name="prompt"
546
- class="chat-input chat-textarea w-full border focus:outline-none text-sm sm:text-base"
547
- placeholder="Posez votre question à Mariam..."
548
- autocomplete="off"
549
- rows="1"></textarea>
550
- <div class="send-button-wrapper">
551
- <button
552
- type="submit"
553
- id="send-button"
554
- class="bg-primary-500 hover:bg-primary-600 disabled:bg-primary-300 text-white rounded-full p-2 transition focus:outline-none focus:ring-2 focus:ring-primary-400 flex items-center justify-center"
555
- title="Envoyer le message">
556
- <i class="fa-solid fa-paper-plane text-sm"></i>
557
- </button>
558
- </div>
559
- </div>
560
- <div class="text-xs text-center mt-2 text-gray-400 dark:text-gray-500">
561
- Appuyez sur <kbd class="px-1.5 py-0.5 bg-gray-100 dark:bg-gray-800 rounded border border-gray-300 dark:border-gray-700">Entrée</kbd>
562
- <span class="hidden sm:inline"> pour envoyer</span>
563
- <span class="sm:hidden"> pour une nouvelle ligne</span>
564
-
565
- <kbd class="px-1.5 py-0.5 bg-gray-100 dark:bg-gray-800 rounded border border-gray-300 dark:border-gray-700">Shift+Entrée</kbd>
566
- <span class="hidden sm:inline"> pour une nouvelle ligne</span>
567
- <span class="sm:hidden"> pour envoyer</span>
568
- </div>
569
- </form>
570
- </div>
571
- </main>
572
- <!-- Scripts -->
573
- <script>
574
- document.addEventListener('DOMContentLoaded', () => {
575
- // Sélection des éléments
576
- const chatForm = document.getElementById('chat-form');
577
- const promptInput = document.getElementById('prompt');
578
- const chatMessages = document.getElementById('chat-messages');
579
- const loadingIndicator = document.getElementById('loading-indicator');
580
- const historyLoadingIndicator = document.getElementById('history-loading');
581
- const errorMessageDiv = document.getElementById('error-message');
582
- const errorTextP = document.getElementById('error-text');
583
- const dismissErrorBtn = document.getElementById('dismiss-error');
584
- const webSearchToggle = document.getElementById('web_search_toggle');
585
- const fileUpload = document.getElementById('file_upload');
586
- const fileChip = document.getElementById('file-chip');
587
- const fileNameSpan = document.getElementById('file-name');
588
- const clearFileButton = document.getElementById('clear-file');
589
- const filePreview = document.getElementById('file-preview');
590
- const previewArea = document.getElementById('preview-area');
591
- const sendButton = document.getElementById('send-button');
592
- const clearForm = document.getElementById('clear-form');
593
- const advancedToggle = document.getElementById('advanced_reasoning_toggle');
594
- const advancedCooldownTimerSpan = document.getElementById('advanced-cooldown-timer');
595
- const themeToggleBtn = document.getElementById('theme-toggle');
596
- const API_CHAT_ENDPOINT = '/api/chat';
597
- const API_HISTORY_ENDPOINT = '/api/history';
598
- const CLEAR_ENDPOINT = '/clear';
599
- const COOLDOWN_DURATION = 60 * 1000;
600
- const MOBILE_BREAKPOINT = 640;
601
- let advancedToggleCooldownEndTime = 0;
602
- let isComposing = false;
603
 
604
- // Gestion du thème
605
- function initializeTheme() {
606
- if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
607
- document.documentElement.classList.add('dark');
608
- } else {
609
- document.documentElement.classList.remove('dark');
610
- }
611
- }
612
- function toggleTheme() {
613
- if (document.documentElement.classList.contains('dark')) {
614
- document.documentElement.classList.remove('dark');
615
- localStorage.theme = 'light';
616
- } else {
617
- document.documentElement.classList.add('dark');
618
- localStorage.theme = 'dark';
 
 
 
 
 
619
  }
620
- }
621
- themeToggleBtn.addEventListener('click', toggleTheme);
622
- initializeTheme();
623
 
624
- // Ajuster la hauteur du textarea
625
- function adjustTextareaHeight(textarea) {
626
- textarea.style.height = 'auto';
627
- const style = window.getComputedStyle(textarea);
628
- const maxHeight = parseInt(style.maxHeight, 10);
629
- const newHeight = Math.min(maxHeight || 200, textarea.scrollHeight);
630
- textarea.style.height = newHeight + 'px';
631
- }
 
 
632
 
633
- // Défilement vers le bas
634
- function scrollToBottom(smooth = true) {
635
- setTimeout(() => {
636
- chatMessages.scrollTo({ top: chatMessages.scrollHeight, behavior: smooth ? 'smooth' : 'auto' });
637
- }, 50);
638
- }
 
 
 
 
639
 
640
- // Affichage de l'indicateur de chargement
641
- function showLoading(show) {
642
- if (show) {
643
- loadingIndicator.classList.remove('hidden');
644
- chatMessages.appendChild(loadingIndicator);
645
- scrollToBottom();
646
- } else {
647
- loadingIndicator.classList.add('hidden');
648
  }
649
- sendButton.disabled = show;
650
- promptInput.disabled = show;
651
- fileUpload.disabled = show;
652
- if (show) {
653
- clearFileButton.style.pointerEvents = 'none';
654
- clearFileButton.style.opacity = '0.5';
655
- } else {
656
- clearFileButton.style.pointerEvents = 'auto';
657
- clearFileButton.style.opacity = '0.7';
658
  }
659
- }
660
 
661
- // Affichage des erreurs
662
- function displayError(message) {
663
- errorTextP.textContent = message || "Une erreur inconnue est survenue.";
664
- errorMessageDiv.classList.remove('hidden');
665
- }
666
- dismissErrorBtn.addEventListener('click', () => { errorMessageDiv.classList.add('hidden'); });
 
 
 
 
667
 
668
- // Ajout d'un message dans le chat
669
- function addMessageToChat(role, content, isHtml = false) {
670
- errorMessageDiv.classList.add('hidden');
671
- const messageWrapper = document.createElement('div');
672
- messageWrapper.classList.add('flex', 'w-full', role === 'user' ? 'justify-end' : 'justify-start');
 
 
673
 
674
- let messageContentHtml = '';
675
- if (isHtml) {
676
- messageContentHtml = content;
677
- } else {
678
- messageContentHtml = `<p class="text-sm sm:text-base whitespace-pre-wrap">${escapeHtml(content)}</p>`;
 
679
  }
 
 
 
 
680
 
681
- let bubbleHtml = '';
682
- if (role === 'user') {
683
- bubbleHtml = `
684
- <div class="message-bubble user-message">
685
- ${messageContentHtml}
686
- </div>
687
- `;
688
- } else {
689
- bubbleHtml = `
690
- <div class="flex items-start space-x-2 max-w-[85%]">
691
- <div class="w-8 h-8 rounded-full bg-primary-100 flex items-center justify-center flex-shrink-0 dark:bg-primary-900/50">
692
- <span class="text-lg">✨</span>
693
- </div>
694
- <div class="message-bubble assistant-message bg-secondary-50 text-secondary-900 border border-secondary-200 relative">
695
- <div class="prose prose-sm sm:prose-base max-w-none dark:prose-invert">
696
- ${messageContentHtml}
697
- </div>
698
- <button class="copy-btn text-xs bg-white/90 dark:bg-gray-800/90 hover:bg-gray-100 dark:hover:bg-gray-700 py-1 px-2 rounded text-gray-600 dark:text-gray-300 flex items-center">
699
- <i class="fa-regular fa-copy mr-1"></i> Copier
700
- </button>
701
- </div>
702
- </div>
703
- `;
 
 
 
 
 
 
 
 
 
 
 
 
 
704
  }
705
- messageWrapper.innerHTML = bubbleHtml;
706
 
707
- // Activation du bouton de copie
708
- const copyBtns = messageWrapper.querySelectorAll('.copy-btn');
709
- copyBtns.forEach(btn => {
710
- btn.addEventListener('click', function() {
711
- const textToCopy = this.closest('.message-bubble').querySelector('.prose').innerText || this.closest('.message-bubble').innerText;
712
- navigator.clipboard.writeText(textToCopy).then(() => {
713
- const originalText = this.innerHTML;
714
- this.innerHTML = '<i class="fa-solid fa-check mr-1"></i> Copié';
715
- setTimeout(() => { this.innerHTML = originalText; }, 2000);
716
- }).catch(err => console.error('Copy failed:', err));
717
- });
718
- });
719
 
720
- // Activation de la copie pour les blocs de code
721
- const codeBlocks = messageWrapper.querySelectorAll('pre');
722
- codeBlocks.forEach(pre => {
723
- const code = pre.querySelector('code');
724
- if (!code) return;
725
- if (pre.querySelector('.code-copy-btn')) return;
726
- const copyButton = document.createElement('button');
727
- copyButton.innerHTML = '<i class="fa-regular fa-copy"></i>';
728
- copyButton.className = 'code-copy-btn p-1.5 bg-gray-200/50 dark:bg-gray-700/50 rounded text-gray-600 dark:text-gray-300 hover:bg-gray-300/70 dark:hover:bg-gray-600/70 tooltip';
729
- copyButton.setAttribute('aria-label', 'Copier le code');
730
- const tooltipText = document.createElement('span');
731
- tooltipText.className = 'tooltip-text !text-xs';
732
- tooltipText.textContent = 'Copier le code';
733
- copyButton.appendChild(tooltipText);
734
- copyButton.addEventListener('click', () => {
735
- navigator.clipboard.writeText(code.innerText).then(() => {
736
- tooltipText.textContent = 'Copié!';
737
- copyButton.innerHTML = '<i class="fa-solid fa-check"></i>';
738
- setTimeout(() => {
739
- copyButton.innerHTML = '<i class="fa-regular fa-copy"></i>';
740
- copyButton.appendChild(tooltipText);
741
- tooltipText.textContent = 'Copier le code';
742
- }, 2000);
743
- }).catch(err => {
744
- tooltipText.textContent = 'Erreur copie';
745
- console.error('Failed to copy code: ', err);
746
- setTimeout(() => { tooltipText.textContent = 'Copier le code'; }, 2000);
747
- });
748
- });
749
- pre.appendChild(copyButton);
750
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
 
752
- chatMessages.insertBefore(messageWrapper, loadingIndicator);
753
- scrollToBottom();
754
- }
755
- function escapeHtml(unsafe) {
756
- return unsafe
757
- .replace(/&/g, "&amp;")
758
- .replace(/</g, "&lt;")
759
- .replace(/>/g, "&gt;")
760
- .replace(/"/g, "&quot;")
761
- .replace(/'/g, "&#039;");
762
- }
 
 
 
763
 
764
- // Gestion du cooldown pour le raisonnement avancé
765
- function startAdvancedCooldownTimer() {
766
- advancedToggle.disabled = true;
767
- advancedToggleCooldownEndTime = Date.now() + COOLDOWN_DURATION;
768
- const intervalId = setInterval(() => {
769
- const now = Date.now();
770
- if (now >= advancedToggleCooldownEndTime) {
771
- clearInterval(intervalId);
772
- advancedCooldownTimerSpan.classList.add('hidden');
773
- advancedToggle.disabled = false;
774
- advancedToggleCooldownEndTime = 0;
775
- } else {
776
- const remainingSeconds = Math.ceil((advancedToggleCooldownEndTime - now) / 1000);
777
- advancedCooldownTimerSpan.textContent = `(${remainingSeconds}s)`;
778
- advancedCooldownTimerSpan.classList.remove('hidden');
779
- }
780
- }, 1000);
781
- const remainingSeconds = Math.ceil((advancedToggleCooldownEndTime - Date.now()) / 1000);
782
- advancedCooldownTimerSpan.textContent = `(${remainingSeconds}s)`;
783
- advancedCooldownTimerSpan.classList.remove('hidden');
784
- }
785
 
786
- // Chargement de l'historique du chat
787
- async function loadChatHistory() {
788
- historyLoadingIndicator.style.display = 'flex';
789
- try {
790
- const response = await fetch(API_HISTORY_ENDPOINT);
791
- if (!response.ok) {
792
- let errorMsg = `Erreur serveur (${response.status})`;
793
- try {
794
- const errData = await response.json();
795
- errorMsg = errData.error || errorMsg;
796
- } catch (e) {}
797
- throw new Error(errorMsg);
798
- }
799
- const data = await response.json();
800
- const messagesToRemove = chatMessages.querySelectorAll(':scope > *:not(#loading-indicator)');
801
- messagesToRemove.forEach(el => el.remove());
802
- loadingIndicator.classList.add('hidden');
803
- if (data.success && Array.isArray(data.history)) {
804
- if (data.history.length === 0) {
805
- addMessageToChat('assistant', "Bonjour ! Je suis Mariam, votre assistant IA. Comment puis-je vous aider aujourd'hui ?", true);
806
- } else {
807
- data.history.forEach(message => {
808
- const isAssistantHtml = message.role === 'assistant';
809
- addMessageToChat(message.role, message.text, isAssistantHtml);
810
- });
811
  }
812
- scrollToBottom(false);
813
- } else {
814
- throw new Error(data.error || "Format de réponse invalide pour l'historique.");
815
- }
816
- } catch (error) {
817
- displayError(`Impossible de charger l'historique: ${error.message}`);
818
- if (chatMessages.querySelectorAll(':scope > *:not(#loading-indicator):not(#history-loading)').length === 0) {
819
- addMessageToChat('assistant', "Bonjour ! Je suis Mariam. Je n'ai pas pu charger notre conversation précédente. Comment puis-je vous aider ?", true);
820
- }
821
- } finally {
822
- historyLoadingIndicator.remove();
823
- promptInput.focus();
824
- adjustTextareaHeight(promptInput);
825
  }
826
- }
 
 
 
 
 
 
827
 
828
- // Gestion des fichiers
829
- function clearFileInput() {
830
- fileUpload.value = '';
831
- fileChip.classList.add('hidden');
832
- fileNameSpan.textContent = '';
833
- fileNameSpan.title = '';
834
- filePreview.innerHTML = '';
835
- filePreview.classList.add('hidden');
836
- previewArea.classList.add('hidden');
837
- }
838
- fileUpload.addEventListener('change', () => {
839
- if (fileUpload.files.length > 0) {
840
- const file = fileUpload.files[0];
841
- const name = file.name;
842
- fileNameSpan.textContent = name;
843
- fileNameSpan.title = name;
844
- fileChip.classList.remove('hidden');
845
- filePreview.innerHTML = '';
846
- if (file.type.startsWith('image/')) {
847
- const reader = new FileReader();
848
- reader.onload = (e) => {
849
- filePreview.innerHTML = `
850
- <div class="file-preview">
851
- <img src="${e.target.result}" alt="Prévisualisation: ${escapeHtml(name)}">
852
- </div>`;
853
- filePreview.classList.remove('hidden');
854
- previewArea.classList.remove('hidden');
855
- };
856
- reader.onerror = () => {
857
- filePreview.innerHTML = `<p class="text-red-500 text-xs text-center p-2">Erreur lecture image</p>`;
858
- filePreview.classList.remove('hidden');
859
- previewArea.classList.remove('hidden');
860
- };
861
- reader.readAsDataURL(file);
862
- } else {
863
- filePreview.innerHTML = `
864
- <div class="flex items-center justify-center p-3">
865
- <div class="bg-gray-100 dark:bg-gray-800 p-3 rounded-lg text-center">
866
- <i class="fa-solid ${getFileIcon(file.type)} text-3xl text-gray-500 dark:text-gray-400 mb-2"></i>
867
- <p class="text-xs text-gray-500 dark:text-gray-400">${formatFileSize(file.size)}</p>
868
  </div>
869
- </div>`;
870
- filePreview.classList.remove('hidden');
871
- previewArea.classList.remove('hidden');
872
- }
873
- } else {
874
- clearFileInput();
 
 
 
 
 
 
875
  }
876
- });
877
- function getFileIcon(fileType) {
878
- if (!fileType) return 'fa-file';
879
- if (fileType.includes('pdf')) return 'fa-file-pdf';
880
- if (fileType.includes('text')) return 'fa-file-lines';
881
- return 'fa-file';
882
- }
883
- function formatFileSize(bytes) {
884
- if (bytes === 0) return '0 octets';
885
- const k = 1024;
886
- const sizes = ['octets', 'Ko', 'Mo', 'Go', 'To'];
887
- const i = Math.floor(Math.log(bytes) / Math.log(k));
888
- return parseFloat((bytes / Math.pow(k, i)).toFixed(1)) + ' ' + sizes[i];
889
- }
890
- clearFileButton.addEventListener('click', clearFileInput);
891
 
892
- // Événements pour le textarea
893
- promptInput.addEventListener('input', () => {
894
- adjustTextareaHeight(promptInput);
895
- });
896
- promptInput.addEventListener('keydown', (e) => {
897
- if (isComposing) return;
898
- const isMobile = window.innerWidth < MOBILE_BREAKPOINT;
899
- if (e.key === 'Enter') {
900
- if (isMobile && !e.shiftKey) {
901
- setTimeout(() => adjustTextareaHeight(promptInput), 0);
902
- } else if (!isMobile && !e.shiftKey) {
903
- e.preventDefault();
904
- if (!sendButton.disabled && (promptInput.value.trim() || fileUpload.files.length > 0)) {
905
- chatForm.dispatchEvent(new Event('submit', { bubbles: true, cancelable: true }));
906
- }
907
- } else if (e.shiftKey) {
908
- setTimeout(() => adjustTextareaHeight(promptInput), 0);
909
- if (isMobile) {
910
- e.preventDefault();
911
- if (!sendButton.disabled && (promptInput.value.trim() || fileUpload.files.length > 0)) {
912
- chatForm.dispatchEvent(new Event('submit', { bubbles: true, cancelable: true }));
913
- }
914
  }
915
- }
916
  }
917
- });
918
- promptInput.addEventListener('compositionstart', () => { isComposing = true; });
919
- promptInput.addEventListener('compositionend', () => {
920
- isComposing = false;
921
- setTimeout(() => adjustTextareaHeight(promptInput), 0);
922
- });
923
- adjustTextareaHeight(promptInput);
924
 
925
- // Soumission du formulaire
926
- chatForm.addEventListener('submit', async (e) => {
927
- e.preventDefault();
928
- const prompt = promptInput.value.trim();
929
- const file = fileUpload.files[0];
930
- const useWebSearch = webSearchToggle.checked;
931
- const useAdvanced = advancedToggle.checked;
932
- if (sendButton.disabled) return;
933
- if (!prompt && !file) {
934
- promptInput.focus();
935
- return;
936
- }
937
- errorMessageDiv.classList.add('hidden');
938
- if (useAdvanced) {
939
- const now = Date.now();
940
- if (advancedToggleCooldownEndTime > 0 && now < advancedToggleCooldownEndTime) {
941
- const remainingSeconds = Math.ceil((advancedToggleCooldownEndTime - now) / 1000);
942
- displayError(`Le raisonnement avancé est disponible dans ${remainingSeconds} seconde(s).`);
943
- return;
944
- }
945
- }
946
- let userMessageText = prompt;
947
- if (file && file.name) {
948
- userMessageText = prompt ? `${prompt}\n[Fichier: ${file.name}]` : `[Fichier joint: ${file.name}]`;
949
- }
950
- addMessageToChat('user', userMessageText);
951
- const formData = new FormData();
952
- formData.append('prompt', prompt);
953
- formData.append('web_search', useWebSearch);
954
- formData.append('advanced_reasoning', useAdvanced);
955
- if (file) {
956
- formData.append('file', file);
957
- }
958
- promptInput.value = '';
959
- adjustTextareaHeight(promptInput);
960
- clearFileInput();
961
- if (useAdvanced) {
962
- startAdvancedCooldownTimer();
963
- advancedToggle.checked = false;
964
- }
965
- webSearchToggle.checked = false;
966
- showLoading(true);
967
- try {
968
- const response = await fetch(API_CHAT_ENDPOINT, { method: 'POST', body: formData });
969
- const data = await response.json();
970
- if (!response.ok) {
971
- throw new Error(data.error || `Erreur serveur: ${response.status} ${response.statusText}`);
972
- }
973
- if (data.success && data.message) {
974
- addMessageToChat('assistant', data.message, true);
975
- } else {
976
- throw new Error(data.error || "Réponse invalide ou vide du serveur.");
977
- }
978
- } catch (error) {
979
- console.error("Chat Error:", error);
980
- addMessageToChat('assistant', `<p class="text-red-600 dark:text-red-400">Désolé, une erreur est survenue :<br>${escapeHtml(error.message)}</p>`, true);
981
- } finally {
982
- showLoading(false);
983
- promptInput.focus();
984
- }
985
- });
986
 
987
- // Effacement de la conversation
988
- clearForm.addEventListener('submit', async (e) => {
989
- e.preventDefault();
990
- const confirmDialog = document.createElement('div');
991
- confirmDialog.className = 'fixed inset-0 bg-black/50 flex items-center justify-center z-50 p-4';
992
- confirmDialog.innerHTML = `
993
- <div class="bg-white dark:bg-gray-800 p-6 rounded-lg shadow-xl max-w-sm w-full animate-[message-fade-in_0.2s_ease-out]">
994
- <h3 class="text-lg font-semibold mb-3 text-gray-900 dark:text-gray-100">Confirmer l'effacement</h3>
995
- <p class="text-sm text-gray-600 dark:text-gray-300 mb-5">Êtes-vous sûr de vouloir effacer toute la conversation ? Cette action est irréversible.</p>
996
- <div class="flex justify-end space-x-3">
997
- <button type="button" id="cancel-clear" class="px-4 py-2 text-sm font-medium text-gray-700 dark:text-gray-300 bg-gray-100 dark:bg-gray-700 rounded hover:bg-gray-200 dark:hover:bg-gray-600 transition-colors focus:outline-none focus:ring-2 focus:ring-gray-400">
998
- Annuler
999
- </button>
1000
- <button type="button" id="confirm-clear" class="px-4 py-2 text-sm font-medium text-white bg-red-600 rounded hover:bg-red-700 transition-colors focus:outline-none focus:ring-2 focus:ring-red-500">
1001
- Effacer
1002
- </button>
1003
- </div>
1004
- </div>
1005
- `;
1006
- const closeModal = () => {
1007
- if (document.body.contains(confirmDialog)) {
1008
- document.body.removeChild(confirmDialog);
1009
- document.body.style.overflow = '';
1010
- }
1011
- };
1012
- confirmDialog.querySelector('#cancel-clear').addEventListener('click', closeModal);
1013
- confirmDialog.querySelector('#confirm-clear').addEventListener('click', async () => {
1014
- closeModal();
1015
- const clearButton = e.target.querySelector('button[type="submit"]');
1016
- const originalButtonContent = clearButton.innerHTML;
1017
- clearButton.disabled = true;
1018
- clearButton.innerHTML = '<i class="fa-solid fa-spinner fa-spin mr-1.5"></i><span class="hidden sm:inline">Effacement...</span>';
1019
- try {
1020
- const response = await fetch(CLEAR_ENDPOINT, {
1021
- method: 'POST',
1022
- headers: {
1023
- 'X-Requested-With': 'XMLHttpRequest'
1024
- }
1025
- });
1026
- const data = await response.json();
1027
- if (response.ok && data.success) {
1028
- const messagesToRemove = chatMessages.querySelectorAll(':scope > *:not(#loading-indicator)');
1029
- messagesToRemove.forEach(el => el.remove());
1030
- addMessageToChat('assistant', "Conversation effacée. Comment puis-je vous aider maintenant ?", true);
1031
- errorMessageDiv.classList.add('hidden');
1032
  } else {
1033
- throw new Error(data.error || "Impossible d'effacer la conversation.");
 
 
 
 
 
 
 
1034
  }
1035
- } catch (error) {
1036
- console.error("Clear Error:", error);
1037
- displayError(`Erreur lors de l'effacement: ${error.message}`);
1038
- } finally {
1039
- clearButton.innerHTML = originalButtonContent;
1040
- clearButton.disabled = false;
1041
- promptInput.focus();
1042
- }
1043
- });
1044
- document.body.appendChild(confirmDialog);
1045
- document.body.style.overflow = 'hidden';
1046
- confirmDialog.querySelector('#cancel-clear').focus();
1047
- });
1048
 
1049
- // Initialisation
1050
- loadChatHistory();
 
1051
 
1052
- // Observer pour les tableaux Markdown
1053
- const observeMarkdownTables = () => {
1054
- const observer = new MutationObserver(mutations => {
1055
- mutations.forEach(mutation => {
1056
- if (mutation.addedNodes.length) {
1057
- mutation.addedNodes.forEach(node => {
1058
- if (node.nodeType === 1) {
1059
- const tables = node.matches('.prose table') ? [node] : node.querySelectorAll('.prose table');
1060
- tables.forEach(table => {
1061
- if (!table.closest('.table-wrapper')) {
1062
- const wrapper = document.createElement('div');
1063
- wrapper.className = 'table-wrapper';
1064
- table.parentNode.insertBefore(wrapper, table);
1065
- wrapper.appendChild(table);
1066
- }
1067
- });
1068
  }
1069
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1070
  }
1071
- });
1072
- });
1073
- observer.observe(chatMessages, { childList: true, subtree: true });
1074
- };
1075
- observeMarkdownTables();
1076
 
1077
- // Gestion du changement de thème selon le système
1078
- const prefersDarkScheme = window.matchMedia('(prefers-color-scheme: dark)');
1079
- const handleSchemeChange = (e) => {
1080
- if (!localStorage.getItem('theme')) {
1081
- if (e.matches) {
1082
- document.documentElement.classList.add('dark');
1083
- } else {
1084
- document.documentElement.classList.remove('dark');
1085
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1086
  }
1087
- };
1088
- prefersDarkScheme.addEventListener('change', handleSchemeChange);
1089
- });
1090
- </script>
1091
  </body>
1092
- </html>
 
1
  <!DOCTYPE html>
2
  <html lang="fr">
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <!-- Méta-données pour une optimisation mobile profonde -->
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
7
+ <title>Gemini AI - Universe UI</title>
8
+ <style>
9
+ :root {
10
+ --bg-deep-space: #0a041c;
11
+ --bg-glass: rgba(18, 12, 44, 0.5);
12
+ --primary-glow: #00f7ff;
13
+ --secondary-glow: #be29ec;
14
+ --text-color: #e0e0e0;
15
+ --border-color: rgba(0, 247, 255, 0.2);
16
+ --safe-area-top: env(safe-area-inset-top, 0px);
17
+ --safe-area-bottom: env(safe-area-inset-bottom, 0px);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ /* --- RESET ET CONFIGURATION GLOBALE --- */
21
+ * { margin: 0; padding: 0; box-sizing: border-box; }
22
+ html { scroll-behavior: smooth; }
23
+
24
+ body {
25
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
26
+ background-color: var(--bg-deep-space);
27
+ color: var(--text-color);
28
+ min-height: 100vh;
29
+ display: flex;
30
+ justify-content: center;
31
+ align-items: center;
32
+ padding: 0;
33
+ /* Fond étoilé subtil et performant */
34
+ background-image:
35
+ radial-gradient(white, rgba(255,255,255,0) 1px, transparent 20px),
36
+ radial-gradient(white, rgba(255,255,255,0) 1px, transparent 30px),
37
+ radial-gradient(white, rgba(255,255,255,0.2) 1px, transparent 20px);
38
+ background-size: 550px 550px, 350px 350px, 250px 250px;
39
+ background-position: 0 0, 40px 60px, 130px 270px;
40
  }
 
 
 
41
 
42
+ /* --- CONTENEUR PRINCIPAL DU CHAT --- */
43
+ .chat-container {
44
+ width: 100%;
45
+ max-width: 800px;
46
+ height: 100vh;
47
+ background-color: transparent;
48
+ display: flex;
49
+ flex-direction: column;
50
+ overflow: hidden;
51
+ }
52
 
53
+ /* --- EN-TÊTE --- */
54
+ .header {
55
+ background-color: var(--bg-glass);
56
+ backdrop-filter: blur(10px);
57
+ padding: 20px 20px 15px;
58
+ text-align: center;
59
+ border-bottom: 1px solid var(--border-color);
60
+ flex-shrink: 0;
61
+ padding-top: calc(20px + var(--safe-area-top)); /* Sécurité pour encoche */
62
+ }
63
 
64
+ .header h1 {
65
+ font-size: 22px;
66
+ font-weight: 600;
67
+ color: var(--primary-glow);
68
+ text-shadow: 0 0 8px rgba(0, 247, 255, 0.5);
69
+ margin-bottom: 5px;
 
 
70
  }
71
+
72
+ /* --- ZONE DES MESSAGES --- */
73
+ .messages {
74
+ flex: 1;
75
+ overflow-y: auto;
76
+ padding: 20px 15px;
77
+ display: flex;
78
+ flex-direction: column;
79
+ gap: 15px;
80
  }
 
81
 
82
+ .message {
83
+ max-width: 85%;
84
+ padding: 12px 18px;
85
+ border-radius: 18px;
86
+ font-size: 16px;
87
+ line-height: 1.5;
88
+ animation: fadeIn 0.4s ease-out;
89
+ border: 1px solid;
90
+ background-color: rgba(10, 4, 28, 0.6);
91
+ }
92
 
93
+ .message.user {
94
+ color: var(--text-color);
95
+ align-self: flex-end;
96
+ border-bottom-right-radius: 4px;
97
+ border-color: var(--primary-glow);
98
+ box-shadow: 0 0 15px rgba(0, 247, 255, 0.15);
99
+ }
100
 
101
+ .message.assistant {
102
+ color: var(--text-color);
103
+ align-self: flex-start;
104
+ border-bottom-left-radius: 4px;
105
+ border-color: var(--secondary-glow);
106
+ box-shadow: 0 0 15px rgba(190, 41, 236, 0.15);
107
  }
108
+
109
+ .message ul { margin-top: 10px; padding-left: 20px; }
110
+ .message strong { color: var(--primary-glow); font-weight: 600; }
111
+ .message code { background: rgba(0,0,0,0.3); padding: 2px 5px; border-radius: 4px; }
112
 
113
+ /* --- ZONE DE SAISIE --- */
114
+ .input-container {
115
+ background-color: var(--bg-glass);
116
+ backdrop-filter: blur(10px);
117
+ padding: 15px;
118
+ border-top: 1px solid var(--border-color);
119
+ flex-shrink: 0;
120
+ padding-bottom: calc(15px + var(--safe-area-bottom)); /* Sécurité pour barre de gestes */
121
+ }
122
+
123
+ /* VISUALISATION D'IMAGE */
124
+ .file-preview { margin-bottom: 10px; display: none; }
125
+ .image-preview-wrapper {
126
+ position: relative;
127
+ display: inline-block;
128
+ }
129
+ .image-preview-wrapper img {
130
+ max-height: 80px;
131
+ border-radius: 8px;
132
+ border: 1px solid var(--border-color);
133
+ }
134
+ .remove-file-btn {
135
+ position: absolute;
136
+ top: -8px;
137
+ right: -8px;
138
+ background: #000;
139
+ color: var(--primary-glow);
140
+ border: 1px solid var(--primary-glow);
141
+ border-radius: 50%;
142
+ width: 24px;
143
+ height: 24px;
144
+ cursor: pointer;
145
+ font-size: 14px;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
  }
 
150
 
151
+ .input-row { display: flex; gap: 10px; align-items: flex-end; }
152
+ .input-wrapper { flex: 1; position: relative; }
 
 
 
 
 
 
 
 
 
 
153
 
154
+ .message-input {
155
+ width: 100%;
156
+ min-height: 48px;
157
+ padding: 12px 55px 12px 20px;
158
+ border: 1px solid var(--border-color);
159
+ border-radius: 24px;
160
+ font-size: 16px;
161
+ resize: none;
162
+ outline: none;
163
+ transition: border-color 0.2s ease, box-shadow 0.2s ease;
164
+ font-family: inherit;
165
+ background-color: var(--bg-deep-space);
166
+ color: var(--text-color);
167
+ }
168
+ .message-input::placeholder { color: #888; }
169
+ .message-input:focus {
170
+ border-color: var(--primary-glow);
171
+ box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
172
+ }
173
+
174
+ .action-button {
175
+ background: transparent;
176
+ border: 1px solid var(--border-color);
177
+ color: var(--primary-glow);
178
+ height: 48px;
179
+ width: 48px;
180
+ border-radius: 50%;
181
+ cursor: pointer;
182
+ font-size: 20px;
183
+ transition: all 0.2s ease;
184
+ flex-shrink: 0;
185
+ display: flex;
186
+ align-items: center;
187
+ justify-content: center;
188
+ }
189
+ .action-button:hover:not(:disabled) {
190
+ border-color: var(--primary-glow);
191
+ background-color: rgba(0, 247, 255, 0.1);
192
+ box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
193
+ }
194
+
195
+ .send-button {
196
+ position: absolute;
197
+ right: 4px;
198
+ top: 50%;
199
+ transform: translateY(-50%);
200
+ width: 40px;
201
+ height: 40px;
202
+ border: none;
203
+ background: transparent;
204
+ }
205
+ .send-button:disabled { color: #555; cursor: not-allowed; }
206
 
207
+ /* --- INDICATEUR DE FRAPPE --- */
208
+ .typing-indicator {
209
+ display: none; align-items: center; gap: 8px;
210
+ color: var(--secondary-glow); padding: 0 15px 10px; font-style: italic;
211
+ }
212
+ .typing-dots span {
213
+ width: 8px; height: 8px; border-radius: 50%;
214
+ background: var(--secondary-glow);
215
+ animation: typing 1.4s infinite ease-in-out;
216
+ box-shadow: 0 0 8px var(--secondary-glow);
217
+ }
218
+ .typing-dots span:nth-child(1) { animation-delay: 0s; }
219
+ .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
220
+ .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
221
 
222
+ /* --- ANIMATIONS --- */
223
+ @keyframes typing {
224
+ 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
225
+ 30% { transform: translateY(-4px); opacity: 1; }
226
+ }
227
+ @keyframes fadeIn {
228
+ from { opacity: 0; transform: translateY(10px); }
229
+ to { opacity: 1; transform: translateY(0); }
230
+ }
 
 
 
 
 
 
 
 
 
 
 
 
231
 
232
+ /* --- MEDIA QUERIES pour DESKTOP --- */
233
+ @media (min-width: 768px) {
234
+ body { padding: 20px; }
235
+ .chat-container {
236
+ height: 90vh;
237
+ border-radius: 12px;
238
+ border: 1px solid var(--border-color);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  }
241
+ </style>
242
+ </head>
243
+ <body>
244
+ <div class="chat-container">
245
+ <div class="header">
246
+ <h1>🤖 Gemini Universe</h1>
247
+ </div>
248
 
249
+ <div class="messages" id="messages">
250
+ <div class="message assistant">
251
+ <div>👋 Bonjour ! Je suis votre assistant IA Gemini.</div>
252
+ <div style="margin-top: 10px;">Posez votre question pour commencer une nouvelle exploration.</div>
253
+ </div>
254
+ </div>
255
+
256
+ <div class="typing-indicator" id="typingIndicator">
257
+ <span>Connexion en cours...</span>
258
+ <div class="typing-dots"><span></span><span></span><span></span></div>
259
+ </div>
260
+
261
+ <div class="input-container">
262
+ <div class="file-preview" id="filePreview"></div>
263
+ <div class="input-row">
264
+ <input type="file" id="fileInput" class="file-input" hidden accept="image/*,video/*,.pdf,.txt,.csv,.json" onchange="handleFileSelect(event)">
265
+ <button class="action-button" onclick="document.getElementById('fileInput').click()" title="Joindre un fichier">📎</button>
266
+ <div class="input-wrapper">
267
+ <textarea id="messageInput" class="message-input" placeholder="Envoyer un message..." rows="1" onkeydown="handleKeyDown(event)" oninput="autoResize(this)"></textarea>
268
+ <button class="action-button send-button" id="sendButton" onclick="sendMessage()" title="Envoyer">➤</button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
269
  </div>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ <!-- SCRIPT FONCTIONNEL AVEC PRÉVISUALISATION D'IMAGE -->
275
+ <script>
276
+ let currentFile = null;
277
+ let conversationId = 'session_' + Date.now();
278
+
279
+ function autoResize(textarea) {
280
+ textarea.style.height = 'auto';
281
+ textarea.style.height = Math.min(textarea.scrollHeight, 150) + 'px';
282
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
 
284
+ function handleKeyDown(event) {
285
+ if (event.key === 'Enter' && !event.shiftKey) {
286
+ event.preventDefault();
287
+ sendMessage();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
288
  }
 
289
  }
 
 
 
 
 
 
 
290
 
291
+ function handleFileSelect(event) {
292
+ const file = event.target.files[0];
293
+ if (!file) return;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
 
295
+ const filePreview = document.getElementById('filePreview');
296
+
297
+ // Afficher une miniature pour les images
298
+ if (file.type.startsWith('image/')) {
299
+ const reader = new FileReader();
300
+ reader.onload = function(e) {
301
+ filePreview.innerHTML = `
302
+ <div class="image-preview-wrapper">
303
+ <img src="${e.target.result}" alt="Aperçu du fichier">
304
+ <button class="remove-file-btn" onclick="removeFile()">✕</button>
305
+ </div>
306
+ `;
307
+ filePreview.style.display = 'block';
308
+ }
309
+ reader.readAsDataURL(file);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  } else {
311
+ // Afficher le nom du fichier pour les autres types
312
+ filePreview.innerHTML = `
313
+ <div class="image-preview-wrapper">
314
+ <span>📎 ${file.name}</span>
315
+ <button class="remove-file-btn" onclick="removeFile()">✕</button>
316
+ </div>
317
+ `;
318
+ filePreview.style.display = 'block';
319
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
320
 
321
+ // Envoyer le fichier au backend
322
+ const formData = new FormData();
323
+ formData.append('file', file);
324
 
325
+ fetch('/upload', { method: 'POST', body: formData })
326
+ .then(response => response.json())
327
+ .then(data => {
328
+ if (data.success) {
329
+ currentFile = data;
330
+ } else {
331
+ showError('Erreur lors du téléchargement: ' + data.error);
332
+ removeFile();
 
 
 
 
 
 
 
 
333
  }
334
+ })
335
+ .catch(error => {
336
+ showError('Erreur réseau lors du téléchargement: ' + error.message);
337
+ removeFile();
338
+ });
339
+ }
340
+
341
+ function removeFile() {
342
+ currentFile = null;
343
+ document.getElementById('filePreview').style.display = 'none';
344
+ document.getElementById('filePreview').innerHTML = '';
345
+ document.getElementById('fileInput').value = '';
346
+ }
347
+
348
+ function sendMessage() {
349
+ const messageInput = document.getElementById('messageInput');
350
+ const message = messageInput.value.trim();
351
+ if (!message && !currentFile) return;
352
+
353
+ addMessage('user', message);
354
+
355
+ const typingIndicator = document.getElementById('typingIndicator');
356
+ typingIndicator.style.display = 'flex';
357
+
358
+ messageInput.value = '';
359
+ autoResize(messageInput);
360
+ messageInput.disabled = true;
361
+ document.getElementById('sendButton').disabled = true;
362
+
363
+ const endpoint = currentFile ? '/chat_with_file' : '/chat';
364
+ const payload = {
365
+ message: message || 'Analyse ce fichier',
366
+ conversation_id: conversationId
367
+ };
368
+
369
+ if (currentFile) {
370
+ payload.file_data = currentFile;
371
  }
 
 
 
 
 
372
 
373
+ fetch(endpoint, {
374
+ method: 'POST',
375
+ headers: { 'Content-Type': 'application/json' },
376
+ body: JSON.stringify(payload)
377
+ })
378
+ .then(response => {
379
+ if (!response.ok) throw new Error(`Erreur réseau: ${response.status}`);
380
+
381
+ const reader = response.body.getReader();
382
+ const decoder = new TextDecoder();
383
+ let buffer = '';
384
+ let messageElement = addMessage('assistant', '');
385
+
386
+ function processStream() {
387
+ return reader.read().then(({ done, value }) => {
388
+ if (done) {
389
+ typingIndicator.style.display = 'none';
390
+ messageInput.disabled = false;
391
+ document.getElementById('sendButton').disabled = false;
392
+ messageInput.focus();
393
+ removeFile();
394
+ return;
395
+ }
396
+ buffer += decoder.decode(value, { stream: true });
397
+ // Remplacer le contenu de l'élément au lieu d'ajouter pour un rendu plus fluide
398
+ messageElement.innerHTML = formatMessage(buffer);
399
+
400
+ const messagesContainer = document.getElementById('messages');
401
+ messagesContainer.scrollTop = messagesContainer.scrollHeight;
402
+
403
+ return processStream();
404
+ });
405
+ }
406
+ return processStream();
407
+ })
408
+ .catch(error => {
409
+ typingIndicator.style.display = 'none';
410
+ messageInput.disabled = false;
411
+ document.getElementById('sendButton').disabled = false;
412
+ addMessage('assistant', `Désolé, une erreur est survenue : ${error.message}`);
413
+ messageInput.focus();
414
+ });
415
+ }
416
+
417
+ function addMessage(role, content) {
418
+ const messagesContainer = document.getElementById('messages');
419
+ const messageDiv = document.createElement('div');
420
+ messageDiv.className = `message ${role}`;
421
+ messageDiv.innerHTML = formatMessage(content);
422
+ messagesContainer.appendChild(messageDiv);
423
+ messagesContainer.scrollTop = messagesContainer.scrollHeight;
424
+ return messageDiv;
425
+ }
426
+
427
+ function formatMessage(content) {
428
+ // Échapper le HTML pour la sécurité
429
+ let escapedContent = content.replace(/</g, "&lt;").replace(/>/g, "&gt;");
430
+ // Appliquer le formatage Markdown
431
+ return escapedContent
432
+ .replace(/\*\*(.*?)\*\*/g, '<strong>$1</strong>')
433
+ .replace(/\*(.*?)\*/g, '<em>$1</em>')
434
+ .replace(/`(.*?)`/g, '<code>$1</code>')
435
+ .replace(/\n/g, '<br>');
436
  }
437
+ </script>
 
 
 
438
  </body>
439
+ </html>