cutiee82 commited on
Commit
cb54dc7
·
verified ·
1 Parent(s): 1ba9e03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -25,7 +25,7 @@ def _fetch(*args, retries=5, **kwargs):
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,11 +77,8 @@ with gr.Blocks(
77
  )
78
  btn = gr.Button("Generate", variant="primary")
79
 
80
- examples = gr.Examples(
81
- _load_examples(),
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=_load_examples())
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,