File size: 166 Bytes
9b24c9c |
1 2 3 4 5 6 7 |
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) |
9b24c9c |
1 2 3 4 5 6 7 |
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) |