Spaces:
Runtime error
Runtime error
Commit
Β·
901b267
1
Parent(s):
e51a98b
Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,6 @@
|
|
1 |
#@title Prepare the Concepts Library to be used
|
2 |
|
3 |
|
4 |
-
|
5 |
-
|
6 |
import requests
|
7 |
import os
|
8 |
import gradio as gr
|
@@ -271,6 +269,8 @@ with gr.Blocks(css=".gradio-container {max-width: 650px}") as new_welcome:
|
|
271 |
<a href="http://www.astronaut.horse">http://www.astronaut.horse</a>
|
272 |
''')
|
273 |
dropdown = gr.Dropdown([dropdown for dropdown in list(DROPDOWNS) if 'ahx-model' in dropdown], label="choose style...")
|
|
|
|
|
274 |
|
275 |
# with gr.Row():
|
276 |
prompt = gr.Textbox(label="image prompt...", elem_id="input-text")
|
@@ -363,10 +363,33 @@ with gr.Blocks() as beta:
|
|
363 |
output_text = gr.Text(elem_id="output-text")
|
364 |
go_button.click(fn=simple_image_prompt, inputs=[prompt, dropdown], outputs=[output, output_text])
|
365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
|
367 |
|
368 |
# -----------------------------------------------------------------------------------------------
|
369 |
|
370 |
|
371 |
-
tabbed_interface = gr.TabbedInterface([new_welcome, dropdown_tab, beta], ["Welcome!", "Advanced Prompting", "Beta Concepts"])
|
372 |
tabbed_interface.launch()
|
|
|
1 |
#@title Prepare the Concepts Library to be used
|
2 |
|
3 |
|
|
|
|
|
4 |
import requests
|
5 |
import os
|
6 |
import gradio as gr
|
|
|
269 |
<a href="http://www.astronaut.horse">http://www.astronaut.horse</a>
|
270 |
''')
|
271 |
dropdown = gr.Dropdown([dropdown for dropdown in list(DROPDOWNS) if 'ahx-model' in dropdown], label="choose style...")
|
272 |
+
dropdown = gr.Dropdown(['square', 'landscape', 'portrait'], label="image size / dimensions...")
|
273 |
+
dropdown = gr.Dropdown(['1 image', '2 images', '3 images', '4 images'], label="output image count...")
|
274 |
|
275 |
# with gr.Row():
|
276 |
prompt = gr.Textbox(label="image prompt...", elem_id="input-text")
|
|
|
363 |
output_text = gr.Text(elem_id="output-text")
|
364 |
go_button.click(fn=simple_image_prompt, inputs=[prompt, dropdown], outputs=[output, output_text])
|
365 |
|
366 |
+
|
367 |
+
|
368 |
+
# -----------------------------------------------------------------------------------------------
|
369 |
+
|
370 |
+
# ~~~ NOISE STEPS TAB ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
371 |
+
|
372 |
+
|
373 |
+
with gr.Blocks() as noise_steps:
|
374 |
+
gr.Markdown('''
|
375 |
+
# π§βπ Noise Steps Loader
|
376 |
+
|
377 |
+
This tool desn't exist yet!
|
378 |
+
''')
|
379 |
+
dropdown = gr.Dropdown([dropdown for dropdown in list(DROPDOWNS) if 'ahx-beta' in dropdown], label="choose style...")
|
380 |
+
|
381 |
+
# with gr.Row():
|
382 |
+
prompt = gr.Textbox(label="image prompt...", elem_id="input-text")
|
383 |
+
|
384 |
+
go_button = gr.Button("generate image", elem_id="go-button")
|
385 |
+
output = gr.Image(elem_id="output-image")
|
386 |
+
output_text = gr.Text(elem_id="output-text")
|
387 |
+
go_button.click(fn=simple_image_prompt, inputs=[prompt, dropdown], outputs=[output, output_text])
|
388 |
+
|
389 |
|
390 |
|
391 |
# -----------------------------------------------------------------------------------------------
|
392 |
|
393 |
|
394 |
+
tabbed_interface = gr.TabbedInterface([new_welcome, dropdown_tab, beta, noise_steps], ["Welcome!", "Advanced Prompting", "Beta Concepts", "Noise Steps"])
|
395 |
tabbed_interface.launch()
|