TLeonidas's picture
Update app.py
c604844 verified
raw history blame
No virus
386 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()