Qwen2.5VL / app.py
ankandrew
WIP
f0c7145
raw
history blame
176 Bytes
import gradio as gr
import spaces
@spaces.GPU
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()