1e156c7 14d37ea 1e156c7
1
2
3
4
5
import gradio as gr def greet(name,age): return f"Hello {name} {age}" iface = gr.Interface(fn = greet,inputs = "text",outputs = "text") iface.launch()