File size: 386 Bytes
c695964
 
 
c604844
c695964
 
 
1
2
3
4
5
6
7
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()