File size: 398 Bytes
68f5083
 
 
6279376
68f5083
 
 
 
1
2
3
4
5
6
7
8
import gradio as gr

def greet(name):
    return "Hello " + name + "!"+"   Welcome to DTC Infotech's Brand New AI Web Site, 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 finger tips")

demo.launch()