Rooni commited on
Commit
e8d6b53
1 Parent(s): ac0a6da

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -38,6 +38,8 @@ def query(prompt, model, is_negative=False, steps=20, cfg_scale=7, seed=None):
38
  API_URL = "https://api-inference.huggingface.co/models/digiplay/incursiosMemeDiffusion_v1.6"
39
  if model == 'Anime Detailer XL LoRA':
40
  API_URL = "https://api-inference.huggingface.co/models/Linaqruf/anime-detailer-xl-lora"
 
 
41
 
42
  payload = {
43
  "inputs": prompt,
@@ -61,7 +63,7 @@ with gr.Blocks(css=css) as dalle:
61
  with gr.Row():
62
  with gr.Column(elem_id="prompt-container"):
63
  text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=3, elem_id="prompt-text-input")
64
- 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", "Incursios v1.6", "Anime Detailer XL LoRA"])
65
 
66
 
67
  with gr.Tab("Расширенные настройки"):
 
38
  API_URL = "https://api-inference.huggingface.co/models/digiplay/incursiosMemeDiffusion_v1.6"
39
  if model == 'Anime Detailer XL LoRA':
40
  API_URL = "https://api-inference.huggingface.co/models/Linaqruf/anime-detailer-xl-lora"
41
+ if model == 'ShadowGost v1.0':
42
+ API_URL = "https://api-inference.huggingface.co/models/digiplay/ShadowGost_v1"
43
 
44
  payload = {
45
  "inputs": prompt,
 
63
  with gr.Row():
64
  with gr.Column(elem_id="prompt-container"):
65
  text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=3, elem_id="prompt-text-input")
66
+ 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", "Incursios v1.6", "Anime Detailer XL LoRA", "ShadowGost v1.0"])
67
 
68
 
69
  with gr.Tab("Расширенные настройки"):