TLeonidas's picture
Create app.py
c695964 verified
raw
history blame
393 Bytes
import gradio as gr
def greet(name):
return "Hello, " + name + ". Thank you for yout visit! \n This Project will be available after the Gulf Coast Conference & Expo on AI. \n You are welcome to join us at this event. \n Find out more at https://hcc.idloom.events/artificial-intelligence-conference-dit" + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()