MasumBhuiyan's picture
Upload app.py
51c6fbe
raw
history blame contribute delete
156 Bytes
import gradio as gr
def infer(name):
return "Hello " + name + "!"
endpoint = gr.Interface(fn=infer, inputs="text", outputs="text")
endpoint.launch()