Spaces:
Runtime error
Runtime error
File size: 385 Bytes
c695964 9d8a651 c695964 9d8a651 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() |