import gradio as gr from main_ui import main_ui_app theme = gr.themes.Ocean( secondary_hue="fuchsia", font=['IBM Plex Sans', gr.themes.GoogleFont('ui-sans-serif'), 'system-ui', 'sans-serif'], ).set( background_fill_secondary_dark='*block_background_fill', button_border_width='*block_border_width', button_border_width_dark='*block_border_width', button_large_radius='*radius_sm' ) with gr.Blocks(theme=theme) as demo: gr.HTML("""

🧒📚 Snap-a-Tale - Snap a picture, get a tale!

🦊 Snapster the Fox, A clever little fox with a camera around his neck and a scroll in his paw.

""") main_ui_app() demo.launch(max_file_size="5mb", debug=False, show_error=True)