diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-22 13:50:33 +0200 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-10-22 13:50:33 +0200 |
commit | 144c7b492256083990b06a70d8b0bc9562ec230c (patch) | |
tree | 8255b1f8d8f1b4f328e7803e126e06d46ad10350 /g4f/models.py | |
parent | Updated (g4f/Provider/nexra/) (diff) | |
download | gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.tar gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.tar.gz gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.tar.bz2 gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.tar.lz gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.tar.xz gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.tar.zst gpt4free-144c7b492256083990b06a70d8b0bc9562ec230c.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/models.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/g4f/models.py b/g4f/models.py index 6fa2fca1..6f36892c 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -52,6 +52,7 @@ from .Provider import ( NexraGeminiPro, NexraMidjourney, NexraQwen, + NexraSD15, OpenaiChat, PerplexityLabs, Pi, @@ -740,6 +741,13 @@ sdxl = Model( ) +sd_1_5 = Model( + name = 'sd-1.5', + base_provider = 'Stability AI', + best_provider = NexraSD15 + +) + sd_3 = Model( name = 'sd-3', base_provider = 'Stability AI', @@ -1095,6 +1103,7 @@ class ModelUtils: ### Stability AI ### 'sdxl': sdxl, +'sd-1.5': sd_1_5, 'sd-3': sd_3, |