Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def _fetch(*args, retries=5, **kwargs):
|
|
25 |
return None
|
26 |
return None
|
27 |
|
28 |
-
def
|
29 |
ds = load_dataset("k-mktr/improved-flux-prompts", split="train")
|
30 |
return [[item] for item in ds.shuffle()["prompt"][:20]]
|
31 |
|
@@ -77,11 +77,8 @@ with gr.Blocks(
|
|
77 |
)
|
78 |
btn = gr.Button("Generate", variant="primary")
|
79 |
|
80 |
-
|
81 |
-
|
82 |
-
inputs=[prompt],
|
83 |
-
cache_examples=False
|
84 |
-
)
|
85 |
|
86 |
with gr.Tab("⚙️ Settings"):
|
87 |
with gr.Row():
|
@@ -133,7 +130,7 @@ with gr.Blocks(
|
|
133 |
return gallery
|
134 |
|
135 |
def update_examples():
|
136 |
-
return gr.Dataset(samples=
|
137 |
|
138 |
app.load(
|
139 |
update_examples,
|
|
|
25 |
return None
|
26 |
return None
|
27 |
|
28 |
+
def load_examples():
|
29 |
ds = load_dataset("k-mktr/improved-flux-prompts", split="train")
|
30 |
return [[item] for item in ds.shuffle()["prompt"][:20]]
|
31 |
|
|
|
77 |
)
|
78 |
btn = gr.Button("Generate", variant="primary")
|
79 |
|
80 |
+
with gr.Accordion("Examples", open=False):
|
81 |
+
examples = gr.Examples(inputs=[prompt])
|
|
|
|
|
|
|
82 |
|
83 |
with gr.Tab("⚙️ Settings"):
|
84 |
with gr.Row():
|
|
|
130 |
return gallery
|
131 |
|
132 |
def update_examples():
|
133 |
+
return gr.Dataset(samples=load_examples())
|
134 |
|
135 |
app.load(
|
136 |
update_examples,
|