Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
import gradio as gr
|
2 |
import requests
|
3 |
-
from gradio import RadioButtons
|
4 |
|
5 |
|
6 |
# Базовые настройки
|
7 |
prompt = gr.Textbox(label="Prompt")
|
8 |
-
models =
|
9 |
|
10 |
# Расширенные настройки
|
11 |
negative_prompt = gr.Textbox(label="Negative Prompt")
|
|
|
1 |
import gradio as gr
|
2 |
import requests
|
|
|
3 |
|
4 |
|
5 |
# Базовые настройки
|
6 |
prompt = gr.Textbox(label="Prompt")
|
7 |
+
models = RadioButtons(options=["Bard", "DALL-E 2", "VQGAN+CLIP", "VQGAN", "CLIP", "InceptionV3"])
|
8 |
|
9 |
# Расширенные настройки
|
10 |
negative_prompt = gr.Textbox(label="Negative Prompt")
|