grad1 / app.py
osaaso's picture
Rename app2.py to app.py
ead3fb6
raw
history blame contribute delete
160 Bytes
import gradio as gr
def greet(name):
return "Hi " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch() #!share="true")