MathBot / app.py
Casio991ms's picture
Add application file
23442bf
raw
history blame
151 Bytes
import gradio as gr
def greet(input):
return "Hello " + input + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()