Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 307 Bytes
85ddcc6 56fad84 b4cd72a |
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(ssr_mode=True) |