File size: 185 Bytes
98844c3
 
 
fa2db85
71ea1f8
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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()