Verse-Learn / app.py
powolnik's picture
ignore update
2bf99f1
raw
history blame contribute delete
159 Bytes
import gradio as gr
def greet(test):
return "Hello " + name + "!!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
ifc = gr
iface.launch()