Spaces:
Sleeping
Sleeping
File size: 141 Bytes
38ca654 |
1 2 3 4 5 6 |
import gradio as gr
def greet (name):
return f"Hello, {name}!"
iface = gr.Interface(fn=greet, inputs="text",outputs="text")
iface.launch() |