diff options
author | nullstreak <139914347+nullstreak@users.noreply.github.com> | 2024-02-04 19:50:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-04 19:50:32 +0100 |
commit | 455e5dc9ea14480f029e1c08f5ff9298e0f9e085 (patch) | |
tree | 5636cefbcb198c6c0bdac3f405e995f9dfc5bb84 /g4f/models.py | |
parent | Fix key error in set_cookies (diff) | |
download | gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.tar gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.tar.gz gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.tar.bz2 gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.tar.lz gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.tar.xz gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.tar.zst gpt4free-455e5dc9ea14480f029e1c08f5ff9298e0f9e085.zip |
Diffstat (limited to 'g4f/models.py')
-rw-r--r-- | g4f/models.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/g4f/models.py b/g4f/models.py index e58ccef2..dd8e175d 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -123,6 +123,12 @@ codellama_34b_instruct = Model( best_provider = RetryProvider([HuggingChat, PerplexityLabs, DeepInfra]) ) +codellama_70b_instruct = Model( + name = "codellama/CodeLlama-70b-Instruct-hf", + base_provider = "huggingface", + best_provider = DeepInfra +) + # Mistral mixtral_8x7b = Model( name = "mistralai/Mixtral-8x7B-Instruct-v0.1", @@ -256,6 +262,7 @@ class ModelUtils: 'llama2-13b': llama2_13b, 'llama2-70b': llama2_70b, 'codellama-34b-instruct': codellama_34b_instruct, + 'codellama-70b-instruct': codellama_70b_instruct, 'mixtral-8x7b': mixtral_8x7b, 'mistral-7b': mistral_7b, @@ -270,4 +277,4 @@ class ModelUtils: 'pi': pi } -_all_models = list(ModelUtils.convert.keys())
\ No newline at end of file +_all_models = list(ModelUtils.convert.keys()) |