CatoEr's picture
Update app.py
3aa75e6 verified
raw
history blame
130 Bytes
import gradio as gr
def greet(name):
return name
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()