import gradio as gr from complete_poem import complete_poem_interface from generate_poem import generate_poem_interface gr_interface = gr.TabbedInterface( [complete_poem_interface, generate_poem_interface], title="Thơ AI", description="Ứng dụng mô hình ngôn ngữ cực lớn để sinh ra các bài thơ Việt Nam", ) gr_interface.launch()