dtc-infotech / app.py
kvssetty's picture
Update app.py
87b96e2
raw
history blame
373 Bytes
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()