Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -93,9 +93,10 @@ with gr.Blocks(css=css) as dalle:
|
|
93 |
with gr.Row():
|
94 |
text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=3, elem_id="prompt-text-input")
|
95 |
with gr.Row():
|
96 |
-
|
97 |
-
|
98 |
-
|
|
|
99 |
|
100 |
|
101 |
|
|
|
93 |
with gr.Row():
|
94 |
text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=3, elem_id="prompt-text-input")
|
95 |
with gr.Row():
|
96 |
+
with gr.Column():
|
97 |
+
model = gr.Radio(label="Модель", value="DALL-E 3 XL", choices=models_list)
|
98 |
+
with gr.Accordion(label="Custom", open=False):
|
99 |
+
custom = gr.Textbox(show_label=False, placeholder="autor/model — openskyml/dalle-3-xl")
|
100 |
|
101 |
|
102 |
|