4-test / app.py
abidlabs's picture
abidlabs HF Staff
Create app.py
c5b93e2 verified
raw
history blame contribute delete
294 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()