import gradio as gr
from ui.lawbot_ui import get_lawbot_tab
from ui.id_assist_ui import get_id_assist_tab
def get_ui():
# π Global disclaimer & note
gr.Markdown(
"""
β οΈ Disclaimer: This chatbot is intended for educational and demonstration purposes only.
It is not a substitute for professional legal advice or representation.
π Note: The chatbot's responses may be slightly slow as the model is
large and runs on limited resources provided by the hosting environment.
""",
elem_classes="centered-text"
)
# π‘οΈ App Title
gr.Markdown(
"""
ποΈ Saarthi β Connecting Every Citizen to Justice and Identity Rights with AI
"""
)
gr.Markdown("---")
# π Tabs
get_lawbot_tab()
get_id_assist_tab()
gr.Markdown("Made by TEAM AtoMβ‘οΈ", elem_classes="centered-text")