mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Add default llama 3 model
This commit is contained in:
parent
4e12f048b1
commit
791b9f5c5a
9 changed files with 28 additions and 19 deletions
|
|
@ -204,6 +204,12 @@ llama_3_1_405b = Model(
|
|||
)
|
||||
|
||||
# llama 3.2
|
||||
llama_3 = VisionModel(
|
||||
name = "llama-3",
|
||||
base_provider = "Meta Llama",
|
||||
best_provider = IterListProvider([HuggingChat, HuggingFace])
|
||||
)
|
||||
|
||||
llama_3_2_1b = Model(
|
||||
name = "llama-3.2-1b",
|
||||
base_provider = "Meta Llama",
|
||||
|
|
@ -872,7 +878,8 @@ class ModelUtils:
|
|||
|
||||
|
||||
demo_models = {
|
||||
"default": [llama_3_2_11b, [HuggingFace]],
|
||||
"default": [llama_3, [HuggingFace]],
|
||||
llama_3_2_11b.name: [llama_3_2_11b, [HuggingChat]],
|
||||
qwen_2_vl_7b.name: [qwen_2_vl_7b, [HuggingFaceAPI]],
|
||||
deepseek_r1.name: [deepseek_r1, [HuggingFace, PollinationsAI]],
|
||||
janus_pro_7b.name: [janus_pro_7b, [HuggingSpace, G4F]],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue