EmoCube commited on
Commit
8a9d912
·
verified ·
1 Parent(s): e21746c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -9
app.py CHANGED
@@ -14,15 +14,17 @@ from random import randint
14
  API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
15
 
16
  mod_list = {
17
- "Default": API_URL,
18
- "Face Realism": "https://api-inference.huggingface.co/models/prithivMLmods/Canopus-LoRA-Flux-FaceRealism",
19
- "Midjourney": "https://api-inference.huggingface.co/models/Jovie/Midjourney_Schnell",
20
- "dev": "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-dev",
21
- "realism": "https://api-inference.huggingface.co/models/hugovntr/flux-schnell-realism",
22
- "MJ v6": "https://api-inference.huggingface.co/models/strangerzonehf/Flux-Midjourney-Mix2-LoRA",
23
- "Flux Realism": "https://api-inference.huggingface.co/models/XLabs-AI/flux-RealismLora",
24
- "Flux Redux": "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-Redux-dev",
25
- "UltraRealsim 2.0": "https://api-inference.huggingface.co/models/prithivMLmods/Canopus-LoRA-Flux-UltraRealism-2.0"
 
 
26
  }
27
  API_TOKEN = os.getenv("HF_READ_TOKEN")
28
  headers = {"Authorization": f"Bearer {API_TOKEN}"}
 
14
  API_URL = "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-schnell"
15
 
16
  mod_list = {
17
+ "FLUX.1 Schnell": API_URL,
18
+ "FLUX.1 Schnell | Face Realism": "https://api-inference.huggingface.co/models/prithivMLmods/Canopus-LoRA-Flux-FaceRealism",
19
+ "FLUX.1 Schnell | Midjourney": "https://api-inference.huggingface.co/models/Jovie/Midjourney_Schnell",
20
+ "FLUX.1 Dev": "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-dev",
21
+ "FLUX.1 Schnell | realism": "https://api-inference.huggingface.co/models/hugovntr/flux-schnell-realism",
22
+ "FLUX.1 Schnell | MJ v6": "https://api-inference.huggingface.co/models/strangerzonehf/Flux-Midjourney-Mix2-LoRA",
23
+ "FLUX.1 Dev | Flux Realism": "https://api-inference.huggingface.co/models/XLabs-AI/flux-RealismLora",
24
+ "FLUX.1 Redux": "https://api-inference.huggingface.co/models/black-forest-labs/FLUX.1-Redux-dev",
25
+ "FLUX.1 Dev | UltraRealsim 2.0": "https://api-inference.huggingface.co/models/prithivMLmods/Canopus-LoRA-Flux-UltraRealism-2.0",
26
+ "Lumina Image 2.0": "https://api-inference.huggingface.co/models/Alpha-VLLM/Lumina-Image-2.0",
27
+ "FLUX.1 Dev | Vector Journey": "https://api-inference.huggingface.co/models/Shakker-Labs/FLUX.1-dev-LoRA-Vector-Journey"
28
  }
29
  API_TOKEN = os.getenv("HF_READ_TOKEN")
30
  headers = {"Authorization": f"Bearer {API_TOKEN}"}