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 Applications, Models and Datasets", description="Data and AI sloutons, products, and services at fingertips") demo.launch()