Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,11 @@ def generate_image(text):
|
|
7 |
print(f"Using example: {text}")
|
8 |
return model(text)
|
9 |
|
10 |
-
examples = [
|
|
|
|
|
|
|
|
|
11 |
|
12 |
interface = gr.Interface(
|
13 |
fn=generate_image,
|
|
|
7 |
print(f"Using example: {text}")
|
8 |
return model(text)
|
9 |
|
10 |
+
examples = [
|
11 |
+
["Humanoid Cat Warrior, Full View"],
|
12 |
+
["Futuristic Robot in Space, Full View"],
|
13 |
+
["Fantasy Dragon in Flight, Full View"]
|
14 |
+
]
|
15 |
|
16 |
interface = gr.Interface(
|
17 |
fn=generate_image,
|