gradio-docker / app.py
abidlabs's picture
abidlabs HF staff
Update app.py
b4cd72a verified
raw
history blame contribute delete
307 Bytes
import gradio as gr
poem = """
Gradio 5, a leap ahead,
Production-ready, quick to spread.
Secure and strong, no task too vast,
The future’s here—efficient, fast.
"""
gr.ChatInterface(
lambda x,y:x,
chatbot=gr.Chatbot(value=[("Write a short poem about Gradio 5", poem)])
).launch(ssr_mode=True)