mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 21:33:02 +01:00
10 lines
194 B
Python
10 lines
194 B
Python
#!/usr/bin/env python
|
|
|
|
import gradio as gr
|
|
|
|
def greet(name):
|
|
return "Hello " + name + "!"
|
|
|
|
demo = gr.Interface(fn=greet, inputs="text", outputs="text", allow_flagging="never")
|
|
demo.launch()
|