Pilot_AI / app.py
diomedes07's picture
initial commit
f7ca15c verified
Raw
History Blame Contribute Delete
148 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()