Saarthi / app.py
raviix46's picture
Update app.py
371f7f8 verified
raw
history blame contribute delete
352 Bytes
import gradio as gr
from ui.gradio_ui import get_ui # Main UI structure
from style import custom_css # Custom CSS for styling
# Gradio app with custom CSS and UI
with gr.Blocks(css=custom_css) as demo:
get_ui() # Loads all tabs including PehchaanSetu and others
# Launch the Gradio app
if __name__ == "__main__":
demo.launch()