tho_ai / app.py
phamson02
update
59e5fd8
raw
history blame contribute delete
No virus
341 Bytes
import gradio as gr
from complete_poem import complete_poem_interface
from generate_poem import generate_poem_interface
gr_interface = gr.TabbedInterface(
interface_list=[complete_poem_interface, generate_poem_interface],
tab_names=["Hoàn thiện bài thơ", "Sinh thơ thần kỳ"],
title="Thơ AI",
)
gr_interface.launch()