diff options
author | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-12 08:04:33 +0100 |
---|---|---|
committer | kqlio67 <kqlio67@users.noreply.github.com> | 2024-11-12 08:04:33 +0100 |
commit | fde29c53e8c8c53cd289414db873c134273f7c68 (patch) | |
tree | 11b165378d0d161fe48fc7b6bd6b05fa6bf9d2f3 /g4f/models.py | |
parent | Update (docs/ README.md g4f/client/client.py) (diff) | |
download | gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.tar gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.tar.gz gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.tar.bz2 gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.tar.lz gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.tar.xz gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.tar.zst gpt4free-fde29c53e8c8c53cd289414db873c134273f7c68.zip |
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/g4f/models.py b/g4f/models.py index dd87d8de..a0cee01d 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -361,6 +361,13 @@ qwen_2_72b = Model( best_provider = IterListProvider([DeepInfraChat, HuggingChat, HuggingFace]) ) +# qwen 2.5 +qwen_2_5_coder_32b = Model( + name = 'qwen-2.5-coder-32b', + base_provider = 'Qwen', + best_provider = IterListProvider([HuggingChat, HuggingFace]) +) + ### Upstage ### solar_mini = Model( name = 'solar-mini', @@ -703,6 +710,9 @@ class ModelUtils: # qwen 2 'qwen-2-72b': qwen_2_72b, + +# qwen 2.5 +'qwen-2.5-coder-32b': qwen_2_5_coder_32b, ### Upstage ### |