test / app.py
thak123's picture
Update app.py
838ebb7
raw
history blame contribute delete
163 Bytes
import gradio as gr
import sqllite
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()