Spaces:
Sleeping
Sleeping
import gradio as gr | |
def greet(name,age): | |
return f"Hello {name} {age}" | |
iface = gr.Interface(fn = greet,inputs = "text",outputs = "text") | |
iface.launch() |