test / app.py
ig-tom's picture
create public link
6fcd60c
Raw
History Blame Contribute Delete
159 Bytes
import gradio as gr
def greet(str):
return "Hello " + str + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch(share=False)