File size: 210 Bytes
11f70e4
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr

app = gr.App()

with app:
    space_hugging_face = SpaceHuggingFace(colors=["#0000ff", "#00ff00", "#ff0000", "#ffff00", "#ff8c00"])
    gr.Image(space_hugging_face.generate())

app.launch()