imtharun
fix: bug fixes
53e6ff5
raw
history blame
136 Bytes
import gradio as gradio
def greet(name):
return f'Hello {name}'
gradio.Interface(fn=greet, inputs="text", outputs="text").launch()