Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
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) |