samith-a's picture
test deploy
e3d6072
raw
history blame
181 Bytes
import gradio as gr
def add(x, y):
return x + y
# Interface: define inputs and outputs
app = gr.Interface(fn=add, inputs=["number", "number"], outputs="number")
app.launch()