Moibe
venv and gitignore
120ba68
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()