leannebriffa's picture
Uploaded Hello World Example
9b24c9c
raw
history blame
No virus
166 Bytes
import gradio as gr
def hello_world(name):
return f"Hello, {name}!"
iface = gr.Interface(fn=hello_world, inputs="text", outputs="text")
iface.launch(share=True)