Trabis commited on
Commit
2fc4f47
·
verified ·
1 Parent(s): df0e374

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +214 -48
app.py CHANGED
@@ -326,55 +326,221 @@ def process_question(question: str):
326
  # Mettez le résultat en cache à la fin
327
  question_cache[question] = (response, context)
328
 
329
- # Custom CSS for right-aligned text in textboxes
330
- custom_css = """
331
- .rtl-text {
332
- text-align: right !important;
333
- direction: rtl !important;
334
- }
335
- .rtl-text textarea {
336
- text-align: right !important;
337
- direction: rtl !important;
338
- }
339
- """
340
-
341
- # Gradio interface with queue
342
- with gr.Blocks(css=custom_css) as iface:
343
- with gr.Column():
344
- input_text = gr.Textbox(
345
- label="السؤال",
346
- placeholder="اكتب سؤالك هنا...",
347
- lines=2,
348
- elem_classes="rtl-text"
349
- )
350
 
351
- with gr.Row():
352
- answer_box = gr.Textbox(
353
- label="الإجابة",
354
- lines=4,
355
- elem_classes="rtl-text"
356
- )
357
- context_box = gr.Textbox(
358
- label="السياق المستخدم",
359
- lines=8,
360
- elem_classes="rtl-text"
361
- )
362
 
363
- submit_btn = gr.Button("إرسال")
364
 
365
- submit_btn.click(
366
- fn=process_question,
367
- inputs=input_text,
368
- outputs=[answer_box, context_box],
369
- api_name="predict",
370
- queue=True # Utiliser le système de queue pour un traitement asynchrone
371
- )
372
-
373
- if __name__ == "__main__":
374
- iface.launch(
375
- share=True,
376
- server_name="0.0.0.0",
377
- server_port=7860,
378
- max_threads=3, # Controls concurrency
379
- show_error=True
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
380
  )
 
326
  # Mettez le résultat en cache à la fin
327
  question_cache[question] = (response, context)
328
 
329
+ # # Custom CSS for right-aligned text in textboxes
330
+ # custom_css = """
331
+ # .rtl-text {
332
+ # text-align: right !important;
333
+ # direction: rtl !important;
334
+ # }
335
+ # .rtl-text textarea {
336
+ # text-align: right !important;
337
+ # direction: rtl !important;
338
+ # }
339
+ # """
340
+
341
+ # # Gradio interface with queue
342
+ # with gr.Blocks(css=custom_css) as iface:
343
+ # with gr.Column():
344
+ # input_text = gr.Textbox(
345
+ # label="السؤال",
346
+ # placeholder="اكتب سؤالك هنا...",
347
+ # lines=2,
348
+ # elem_classes="rtl-text"
349
+ # )
350
 
351
+ # with gr.Row():
352
+ # answer_box = gr.Textbox(
353
+ # label="الإجابة",
354
+ # lines=4,
355
+ # elem_classes="rtl-text"
356
+ # )
357
+ # context_box = gr.Textbox(
358
+ # label="السياق المستخدم",
359
+ # lines=8,
360
+ # elem_classes="rtl-text"
361
+ # )
362
 
363
+ # submit_btn = gr.Button("إرسال")
364
 
365
+ # submit_btn.click(
366
+ # fn=process_question,
367
+ # inputs=input_text,
368
+ # outputs=[answer_box, context_box],
369
+ # api_name="predict",
370
+ # queue=True # Utiliser le système de queue pour un traitement asynchrone
371
+ # )
372
+
373
+ # if __name__ == "__main__":
374
+ # iface.launch(
375
+ # share=True,
376
+ # server_name="0.0.0.0",
377
+ # server_port=7860,
378
+ # max_threads=3, # Controls concurrency
379
+ # show_error=True
380
+ # )
381
+
382
+ # CSS personnalisé avec l'importation de Google Fonts
383
+ custom_css = """
384
+ /* Import Google Fonts - Noto Sans Arabic */
385
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');
386
+
387
+ /* Styles généraux */
388
+ :root {
389
+ --primary-color: #2D3748;
390
+ --secondary-color: #4A5568;
391
+ --accent-color: #4299E1;
392
+ --background-color: #F7FAFC;
393
+ --border-radius: 8px;
394
+ --font-family-arabic: 'Noto Sans Arabic', Arial, sans-serif;
395
+ }
396
+
397
+ /* Style de base */
398
+ body {
399
+ font-family: var(--font-family-arabic);
400
+ background-color: var(--background-color);
401
+ }
402
+
403
+ /* Styles pour le texte RTL */
404
+ .rtl-text {
405
+ text-align: right !important;
406
+ direction: rtl !important;
407
+ font-family: var(--font-family-arabic) !important;
408
+ }
409
+
410
+ .rtl-text textarea {
411
+ text-align: right !important;
412
+ direction: rtl !important;
413
+ padding: 1rem !important;
414
+ border-radius: var(--border-radius) !important;
415
+ border: 1px solid #E2E8F0 !important;
416
+ background-color: white !important;
417
+ font-size: 1.1rem !important;
418
+ line-height: 1.6 !important;
419
+ font-family: var(--font-family-arabic) !important;
420
+ }
421
+
422
+ /* Style du titre */
423
+ .app-title {
424
+ font-family: var(--font-family-arabic) !important;
425
+ font-size: 2rem !important;
426
+ font-weight: 700 !important;
427
+ color: var(--primary-color) !important;
428
+ margin-bottom: 2rem !important;
429
+ text-align: center !important;
430
+ }
431
+
432
+ /* Styles des étiquettes */
433
+ .rtl-text label {
434
+ font-family: var(--font-family-arabic) !important;
435
+ font-size: 1.2rem !important;
436
+ font-weight: 600 !important;
437
+ color: var(--primary-color) !important;
438
+ margin-bottom: 0.5rem !important;
439
+ }
440
+
441
+ /* Style du bouton */
442
+ button.primary-button {
443
+ font-family: var(--font-family-arabic) !important;
444
+ background-color: var(--accent-color) !important;
445
+ color: white !important;
446
+ padding: 0.75rem 1.5rem !important;
447
+ border-radius: var(--border-radius) !important;
448
+ font-weight: 600 !important;
449
+ font-size: 1.1rem !important;
450
+ transition: all 0.3s ease !important;
451
+ }
452
+
453
+ button.primary-button:hover {
454
+ background-color: #3182CE !important;
455
+ transform: translateY(-1px) !important;
456
+ }
457
+
458
+ /* Styles des boîtes de texte */
459
+ .textbox-container {
460
+ background-color: white !important;
461
+ padding: 1.5rem !important;
462
+ border-radius: var(--border-radius) !important;
463
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
464
+ margin-bottom: 1rem !important;
465
+ }
466
+
467
+ /* Animation de chargement */
468
+ .loading {
469
+ animation: pulse 2s infinite;
470
+ }
471
+
472
+ @keyframes pulse {
473
+ 0% { opacity: 1; }
474
+ 50% { opacity: 0.5; }
475
+ 100% { opacity: 1; }
476
+ }
477
+
478
+ /* Style du statut */
479
+ .status-text {
480
+ font-family: var(--font-family-arabic) !important;
481
+ text-align: center !important;
482
+ color: var(--secondary-color) !important;
483
+ font-size: 1rem !important;
484
+ margin-top: 1rem !important;
485
+ }
486
+ """
487
+
488
+ # Interface Gradio avec la nouvelle police
489
+ with gr.Blocks(css=custom_css) as iface:
490
+ with gr.Column(elem_classes="container"):
491
+ gr.Markdown(
492
+ "# نظام الأسئلة والأجوبة الذكي",
493
+ elem_classes="app-title rtl-text"
494
+ )
495
+
496
+ with gr.Column(elem_classes="textbox-container"):
497
+ input_text = gr.Textbox(
498
+ label="السؤال",
499
+ placeholder="اكتب سؤالك هنا...",
500
+ lines=2,
501
+ elem_classes="rtl-text"
502
+ )
503
+
504
+ with gr.Row():
505
+ with gr.Column(scale=2):
506
+ answer_box = gr.Textbox(
507
+ label="الإجابة",
508
+ lines=4,
509
+ elem_classes="rtl-text textbox-container"
510
+ )
511
+ with gr.Column(scale=1):
512
+ context_box = gr.Textbox(
513
+ label="السياق المستخدم",
514
+ lines=8,
515
+ elem_classes="rtl-text textbox-container"
516
+ )
517
+
518
+ submit_btn = gr.Button(
519
+ "إرسال السؤال",
520
+ elem_classes="primary-button",
521
+ variant="primary"
522
+ )
523
+
524
+ # Statut avec la nouvelle police
525
+ status_text = gr.Markdown("", elem_classes="rtl-text status-text")
526
+
527
+ def on_submit(question):
528
+ status_text.value = "جاري معالجة السؤال..."
529
+ return process_question(question)
530
+
531
+ submit_btn.click(
532
+ fn=on_submit,
533
+ inputs=input_text,
534
+ outputs=[answer_box, context_box, status_text],
535
+ api_name="predict",
536
+ queue=True
537
+ )
538
+
539
+ if __name__ == "__main__":
540
+ iface.launch(
541
+ share=True,
542
+ # server_name="0.0.0.0",
543
+ # server_port=7860,
544
+ max_threads=3,
545
+ show_error=True
546
  )