app.py
Browse files
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}'
|
13 |
return ki
|
14 |
|
15 |
def load_fn(models):
|
@@ -26,39 +26,38 @@ def gen_fn(model_str, prompt):
|
|
26 |
return models_load[model_str](f'{prompt} {noise}')
|
27 |
|
28 |
def make_me():
|
29 |
-
|
30 |
-
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
|
|
54 |
|
55 |
js_code = """
|
56 |
-
|
57 |
-
console.log('ghgh');
|
58 |
-
|
59 |
"""
|
60 |
|
61 |
-
with gr.Blocks(css="div.float.svelte-1mwvhlq {
|
62 |
gr.Markdown("<script>" + js_code + "</script>")
|
63 |
make_me()
|
64 |
|
|
|
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):
|
|
|
26 |
return models_load[model_str](f'{prompt} {noise}')
|
27 |
|
28 |
def make_me():
|
29 |
+
with gr.Row():
|
30 |
+
txt_input = gr.Textbox(label='Your prompt:', lines=3)
|
31 |
|
32 |
+
gen_button = gr.Button('Generate images')
|
33 |
+
stop_button = gr.Button('Stop', variant='secondary', interactive=False)
|
34 |
+
gen_button.click(lambda s: gr.update(interactive=True), None, stop_button)
|
35 |
+
gr.HTML("""
|
36 |
+
<div style="text-align: center; max-width: 100%; margin: 0 auto;">
|
37 |
+
<body>
|
38 |
+
</body>
|
39 |
+
</div>
|
40 |
+
""")
|
41 |
+
with gr.Row():
|
42 |
+
# Define default_models before using it
|
43 |
+
default_models = ['model1', 'model2'] # Example values
|
44 |
+
output = [gr.Image(label=m, min_width=250, height=250) for m in default_models]
|
45 |
+
current_models = [gr.Textbox(m, visible=False) for m in default_models]
|
46 |
+
for m, o in zip(current_models, output):
|
47 |
+
gen_event = gen_button.click(gen_fn, [m, txt_input], o)
|
48 |
+
stop_button.click(lambda s: gr.update(interactive=False), None, stop_button, cancels=[gen_event])
|
49 |
+
with gr.Accordion('Model selection'):
|
50 |
+
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)
|
51 |
+
model_choice.change(update_imgbox, model_choice, output)
|
52 |
+
model_choice.change(extend_choices, model_choice, current_models)
|
53 |
+
with gr.Row():
|
54 |
+
gr.HTML()
|
55 |
|
56 |
js_code = """
|
57 |
+
console.log('ghgh');
|
|
|
|
|
58 |
"""
|
59 |
|
60 |
+
with gr.Blocks(css="div.float.svelte-1mwvhlq { position: absolute; top: var(--block-label-margin); left: var(--block-label-margin); background: none; border: none;}") as demo:
|
61 |
gr.Markdown("<script>" + js_code + "</script>")
|
62 |
make_me()
|
63 |
|