UKURIKIYEYEZU commited on
Commit
d26ee43
·
verified ·
1 Parent(s): 4a5f206

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -21
app.py CHANGED
@@ -579,25 +579,18 @@ def chatbot_interface():
579
  margin-bottom: 1rem !important;
580
  }
581
 
582
- .registration-markdown {
583
- color: white !important;
584
- }
585
-
586
- .chat-title h1 {
587
- color: white !important;
588
- }
589
 
590
 
591
  """) as demo:
592
  # User registration section
593
  registration_container = gr.Column(visible=True)
594
- # with registration_container:
595
- # gr.Markdown("### Your privacy is our concern, please provide your nickname. ")
596
  with registration_container:
597
- gr.Markdown(
598
- "### Your privacy is our concern, please provide your nickname.",
599
- elem_id="registration-markdown"
600
- )
 
 
601
 
602
  with gr.Row():
603
  first_name = gr.Textbox(
@@ -613,19 +606,19 @@ def chatbot_interface():
613
 
614
  # Chatbot section (initially hidden)
615
  chatbot_container = gr.Column(visible=False)
616
- # with chatbot_container:
617
- # chat_interface = gr.ChatInterface(
618
- # fn=rag_memory_stream,
619
- # title="Chat with GBVR",
620
- # fill_height=True
621
- # )
622
  with chatbot_container:
623
  chat_interface = gr.ChatInterface(
624
  fn=rag_memory_stream,
625
  title="Chat with GBVR",
626
- fill_height=True,
627
- elem_id="chat-title"
628
  )
 
 
 
 
 
 
 
629
 
630
  # Footer with version info
631
  gr.Markdown("Ijwi ry'Ubufasha v1.0.0 © 2025", elem_id="footer")
 
579
  margin-bottom: 1rem !important;
580
  }
581
 
 
 
 
 
 
 
 
582
 
583
 
584
  """) as demo:
585
  # User registration section
586
  registration_container = gr.Column(visible=True)
 
 
587
  with registration_container:
588
+ gr.Markdown("### Your privacy is our concern, please provide your nickname. ")
589
+ # with registration_container:
590
+ # gr.Markdown(
591
+ # "### Your privacy is our concern, please provide your nickname.",
592
+ # elem_id="registration-markdown"
593
+ # )
594
 
595
  with gr.Row():
596
  first_name = gr.Textbox(
 
606
 
607
  # Chatbot section (initially hidden)
608
  chatbot_container = gr.Column(visible=False)
 
 
 
 
 
 
609
  with chatbot_container:
610
  chat_interface = gr.ChatInterface(
611
  fn=rag_memory_stream,
612
  title="Chat with GBVR",
613
+ fill_height=True
 
614
  )
615
+ # with chatbot_container:
616
+ # chat_interface = gr.ChatInterface(
617
+ # fn=rag_memory_stream,
618
+ # title="Chat with GBVR",
619
+ # fill_height=True,
620
+ # elem_id="chat-title"
621
+ # )
622
 
623
  # Footer with version info
624
  gr.Markdown("Ijwi ry'Ubufasha v1.0.0 © 2025", elem_id="footer")