MiniDPVO / pixi_app.py
pablovela5620's picture
add lsof package and check port 7860 before hand
f6fe9bf
raw
history blame
No virus
154 Bytes
import gradio as gr
def greet(name):
return "Hello pixi" + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()