File size: 175 Bytes
e8c51f1 |
1 2 3 4 5 6 7 8 |
import gradio
def greet(name):
return f"Hello {name}. Check back soon for real content"
iface = gradio.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
|
e8c51f1 |
1 2 3 4 5 6 7 8 |
import gradio
def greet(name):
return f"Hello {name}. Check back soon for real content"
iface = gradio.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
|