Spaces:
Runtime error
Runtime error
File size: 227 Bytes
7fca613 | 1 2 3 4 5 6 7 8 9 10 11 | import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()
# import all libraries
# define all functions
# call functions in gr.interface |