Rooni commited on
Commit
0a81284
1 Parent(s): 260ef11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -32,6 +32,8 @@ def query(prompt, model, is_negative=False, steps=20, cfg_scale=7, seed=None):
32
  API_URL = "https://api-inference.huggingface.co/models/Linaqruf/animagine-xl-2.0"
33
  if model == 'Counterfeit v2.5':
34
  API_URL = "https://api-inference.huggingface.co/models/gsdf/Counterfeit-V2.5"
 
 
35
 
36
  payload = {
37
  "inputs": prompt,
@@ -55,7 +57,7 @@ with gr.Blocks(css=css) as dalle:
55
  with gr.Row():
56
  with gr.Column(elem_id="prompt-container"):
57
  text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=3, elem_id="prompt-text-input")
58
- model = gr.Radio(label="Модель", value="DALL-E 3 XL", choices=["AbsoluteReality v1.8.1", "DALL-E 3 XL", "Playground v2", "Openjourney v4", "Lyriel 1.6", "Animagine XL 2.0", "Counterfeit v2.5"])
59
 
60
 
61
  with gr.Tab("Расширенные настройки"):
 
32
  API_URL = "https://api-inference.huggingface.co/models/Linaqruf/animagine-xl-2.0"
33
  if model == 'Counterfeit v2.5':
34
  API_URL = "https://api-inference.huggingface.co/models/gsdf/Counterfeit-V2.5"
35
+ if model == 'Realistic Vision 5.1':
36
+ API_URL = "https://api-inference.huggingface.co/models/stablediffusionapi/realistic-vision-v51"
37
 
38
  payload = {
39
  "inputs": prompt,
 
57
  with gr.Row():
58
  with gr.Column(elem_id="prompt-container"):
59
  text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=3, elem_id="prompt-text-input")
60
+ model = gr.Radio(label="Модель", value="DALL-E 3 XL", choices=["AbsoluteReality v1.8.1", "DALL-E 3 XL", "Playground v2", "Openjourney v4", "Lyriel 1.6", "Animagine XL 2.0", "Counterfeit v2.5", "Realistic Vision 5.1"])
61
 
62
 
63
  with gr.Tab("Расширенные настройки"):