calculator-demo / app.py
georgiyozhegov's picture
Test app
25bc683
raw
history blame
130 Bytes
import gradio as gr
def test(name):
return "test"
demo = gr.Interface(fn=test, inputs="text", outputs="text")
demo.launch()