Spaces:
Runtime error
Runtime error
File size: 169 Bytes
c32a3c5 |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
from gradio import inputs
def greet(name):
return "Hello " + name + "!!"
ui = gr.Interface(greet, inputs="text", outputs="text")
ui.launch()
|