Yntec commited on
Commit
654d3d1
1 Parent(s): c7ed42a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -71,6 +71,14 @@ with gr.Blocks() as demo:
71
  model_choice = gr.CheckboxGroup(models, label = f'Choose up to {num_models} different models from the 600 available!', value = default_models, multiselect = True, max_choices = num_models, interactive = True, filterable = False)
72
  model_choice.change(update_imgbox, model_choice, output)
73
  model_choice.change(extend_choices, model_choice, current_models)
 
 
 
 
 
 
 
 
74
 
75
  demo.queue(concurrency_count = 200)
76
  demo.launch()
 
71
  model_choice = gr.CheckboxGroup(models, label = f'Choose up to {num_models} different models from the 600 available!', value = default_models, multiselect = True, max_choices = num_models, interactive = True, filterable = False)
72
  model_choice.change(update_imgbox, model_choice, output)
73
  model_choice.change(extend_choices, model_choice, current_models)
74
+ with gr.Row():
75
+ gr.HTML(
76
+ """
77
+ <div class="footer">
78
+ <p> Based on the <a href="https://huggingface.co/spaces/derwahnsinn/TestGen">TestGen</a> Space by derwahnsinn, the <a href="https://huggingface.co/spaces/RdnUser77/SpacIO_v1">SpacIO</a> space by RdnUser77 and Omnibus's Maximum Multiplier!
79
+ </p>
80
+ """
81
+ )
82
 
83
  demo.queue(concurrency_count = 200)
84
  demo.launch()