AI-EMBD / app.py
csalabs's picture
Update app.py
befb32f
raw
history blame
160 Bytes
import gradio as gr
def greet(name):
return "Hello" + name + "I am from CSA"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()