5e9aba9
1
2
3
4
5
6
7
8
import gradio as gr def respond(message): return f"You said: {message}" iface = gr.Interface(fn=respond, inputs="text", outputs="text") iface.launch()