DazDin commited on
Commit
70ef948
·
verified ·
1 Parent(s): 2feae84

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -9,7 +9,7 @@ def get_current_time():
9
  now = datetime.now()
10
  now2 = now
11
  current_time = now2.strftime("%Y-%m-%d %H:%M:%S")
12
- ki = f'{kii} {current_time}' # Assuming kii is defined somewhere
13
  return ki
14
 
15
  def load_fn(models):
@@ -25,10 +25,12 @@ def gen_fn(model_str, prompt):
25
  noise = str(randint(0, 9999))
26
  return models_load[model_str](f'{prompt} {noise}')
27
 
 
 
 
28
  def make_me():
29
- # Define default_models and num_models before using them
30
- default_models = ['model1', 'model2'] # Example values
31
- num_models = len(models) # Assuming models is a list of available models
32
 
33
  with gr.Row():
34
  txt_input = gr.Textbox(label='Your prompt:', lines=3)
@@ -46,7 +48,7 @@ def make_me():
46
  stop_button.click(lambda s: gr.update(interactive=False), [stop_button], stop_button, cancels=[gen_event])
47
 
48
  with gr.Accordion('Model selection'):
49
- model_choice = gr.CheckboxGroup(models, label=f'{num_models} different models selected', value=default_models, multiselect=True, max_choices=num_models, interactive=True, filterable=False)
50
  model_choice.change(update_imgbox, model_choice, output)
51
  model_choice.change(extend_choices, model_choice, current_models)
52
 
@@ -61,5 +63,5 @@ with gr.Blocks(css="div.float.svelte-1mwvhlq { position: absolute; top: var(--bl
61
  gr.Markdown("<script>" + js_code + "</script>")
62
  make_me()
63
 
64
- demo.queue(concurrency_count=100)
65
  demo.launch()
 
9
  now = datetime.now()
10
  now2 = now
11
  current_time = now2.strftime("%Y-%m-%d %H:%M:%S")
12
+ ki = f'{current_time}'
13
  return ki
14
 
15
  def load_fn(models):
 
25
  noise = str(randint(0, 9999))
26
  return models_load[model_str](f'{prompt} {noise}')
27
 
28
+ def extend_choices(choices):
29
+ return choices
30
+
31
  def make_me():
32
+ default_models = ['model1', 'model2']
33
+ num_models = len(models)
 
34
 
35
  with gr.Row():
36
  txt_input = gr.Textbox(label='Your prompt:', lines=3)
 
48
  stop_button.click(lambda s: gr.update(interactive=False), [stop_button], stop_button, cancels=[gen_event])
49
 
50
  with gr.Accordion('Model selection'):
51
+ model_choice = gr.CheckboxGroup(models, label=f'{num_models} different models selected', value=default_models, interactive=True)
52
  model_choice.change(update_imgbox, model_choice, output)
53
  model_choice.change(extend_choices, model_choice, current_models)
54
 
 
63
  gr.Markdown("<script>" + js_code + "</script>")
64
  make_me()
65
 
66
+ demo.queue(concurrency_count=200)
67
  demo.launch()