PromptDA / app.py
haotongl
inital version
71ea1f8
raw
history blame
185 Bytes
import spaces
import gradio as gr
@spaces.GPU
def generate(prompt):
return 'hello, world'
gr.Interface(
fn=generate,
inputs=gr.Text(),
outputs=gr.Gallery(),
).launch()