Spaces:
Runtime error
Runtime error
import gradio as gr | |
def greet(name): | |
return "Hello " + name + "!"+" Welcome to DTC Infotech, Shortly you will be seeing lots of AI and ML demo apps here. Thanks for visiting, Good day" | |
demo = gr.Interface(fn=greet, inputs="text", outputs="text",title="DTC Infotech AI Site", description="Data and AI sloutons, products, and services at fingertips") | |
demo.launch() |