Spaces:
No application file
No application file
Create app.py
#22
by
martyseva
- opened
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()