testspace / app.py
Ronak Ramachandran
hello world only (simpler for now)
5e527c3
raw
history blame
No virus
191 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
if __name__ == "__main__":
demo.launch()