1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-21 17:56:53 +02:00
This commit is contained in:
kev 2024-04-12 12:05:05 +08:00
parent c86b7a5400
commit 6b10128a6a

View File

@ -5,5 +5,5 @@ import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo = gr.Interface(fn=greet, inputs="text", outputs="text", allow_flagging="never")
demo.launch()