SSO-VO2max-calc / app.py
bjornsing's picture
test
77f8492
raw
history blame
164 Bytes
import gradio as gr
def greet(name, a):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs=["text","a"], outputs=["text","a"])
iface.launch()