sulku / app.py
Moibe
venv and gitignore
bc14969
raw
history blame
193 Bytes
import gradio as gr
def greet(name):
#tokens = bafta()
return "Tervetuloa " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()