new model added

This commit is contained in:
kqlio67 2024-09-12 22:11:01 +03:00
parent b12c619c6e
commit e23ee1f809
2 changed files with 10 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class HuggingChat(AbstractProvider, ProviderModelMixin):
"llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct", "llama-3.1-70b": "meta-llama/Meta-Llama-3.1-70B-Instruct",
"command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024", "command-r-plus": "CohereForAI/c4ai-command-r-plus-08-2024",
"mixtral-8x7b": "mistralai/Mixtral-8x7B-Instruct-v0.1", "mixtral-8x7b": "mistralai/Mixtral-8x7B-Instruct-v0.1",
"mixtral-8x7b": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO", "mixtral-8x7b-dpo": "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
"mistral-7b": "mistralai/Mistral-7B-Instruct-v0.3", "mistral-7b": "mistralai/Mistral-7B-Instruct-v0.3",
"phi-3-mini-4k": "microsoft/Phi-3-mini-4k-instruct", "phi-3-mini-4k": "microsoft/Phi-3-mini-4k-instruct",
} }

View File

@ -189,6 +189,7 @@ llama_3_1_405b = Model(
best_provider = IterListProvider([Blackbox]) best_provider = IterListProvider([Blackbox])
) )
### Mistral ### ### Mistral ###
mixtral_8x7b = Model( mixtral_8x7b = Model(
name = "mixtral-8x7b", name = "mixtral-8x7b",
@ -203,6 +204,14 @@ mistral_7b = Model(
) )
### NousResearch ###
mixtral_8x7b_dpo = Model(
name = "mixtral-8x7b-dpo",
base_provider = "NousResearch",
best_provider = IterListProvider([HuggingChat, HuggingFace,])
)
### Microsoft ### ### Microsoft ###
phi_3_mini_4k = Model( phi_3_mini_4k = Model(
name = "phi-3-mini-4k", name = "phi-3-mini-4k",