Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 294 Bytes
85ddcc6 56fad84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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() |