Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ API_URL = "https://api-inference.huggingface.co/models/openskyml/dalle-3-xl"
|
|
11 |
API_TOKEN = os.getenv("HF_READ_TOKEN") # it is free
|
12 |
headers = {"Authorization": f"Bearer {API_TOKEN}"}
|
13 |
|
14 |
-
models_list = ["AbsoluteReality 1.8.1", "DALL-E 3 XL", "Playground 2", "Openjourney 4", "Lyriel 1.6", "Animagine XL 2.0", "Counterfeit 2.5", "Realistic Vision 5.1", "Incursios 1.6", "Anime Detailer XL LoRA", "epiCRealism", "PixelArt XL", "NewReality XL", "Anything 5.0", "PixArt XL 2.0"]
|
15 |
|
16 |
def query(prompt, model, is_negative=False, steps=30, cfg_scale=7, seed=None, sampler="DPM++ 2M Karras"):
|
17 |
language = detect(prompt)
|
@@ -52,6 +52,8 @@ def query(prompt, model, is_negative=False, steps=30, cfg_scale=7, seed=None, sa
|
|
52 |
API_URL = "https://api-inference.huggingface.co/models/hogiahien/anything-v5-edited"
|
53 |
if model == 'PixArt XL 2.0':
|
54 |
API_URL = "https://api-inference.huggingface.co/models/PixArt-alpha/PixArt-XL-2-1024-MS"
|
|
|
|
|
55 |
|
56 |
payload = {
|
57 |
"inputs": prompt,
|
|
|
11 |
API_TOKEN = os.getenv("HF_READ_TOKEN") # it is free
|
12 |
headers = {"Authorization": f"Bearer {API_TOKEN}"}
|
13 |
|
14 |
+
models_list = ["AbsoluteReality 1.8.1", "DALL-E 3 XL", "Playground 2", "Openjourney 4", "Lyriel 1.6", "Animagine XL 2.0", "Counterfeit 2.5", "Realistic Vision 5.1", "Incursios 1.6", "Anime Detailer XL LoRA", "epiCRealism", "PixelArt XL", "NewReality XL", "Anything 5.0", "PixArt XL 2.0", "Waifu 1.4"]
|
15 |
|
16 |
def query(prompt, model, is_negative=False, steps=30, cfg_scale=7, seed=None, sampler="DPM++ 2M Karras"):
|
17 |
language = detect(prompt)
|
|
|
52 |
API_URL = "https://api-inference.huggingface.co/models/hogiahien/anything-v5-edited"
|
53 |
if model == 'PixArt XL 2.0':
|
54 |
API_URL = "https://api-inference.huggingface.co/models/PixArt-alpha/PixArt-XL-2-1024-MS"
|
55 |
+
if model == 'Waifu 1.4':
|
56 |
+
API_URL = "https://api-inference.huggingface.co/models/gisohi6975/nsfw-waifu-diffusion"
|
57 |
|
58 |
payload = {
|
59 |
"inputs": prompt,
|