mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-06 02:30:41 -08:00
Add HuggingFaceMedia provider with Video Generation
Add Support for Video Response in UI Improve Support for Audio Response in UI Fix ModelNotSupported errors in HuggingSpace providers
This commit is contained in:
parent
97f1964bb6
commit
8eaaf5db95
21 changed files with 356 additions and 128 deletions
|
|
@ -234,11 +234,6 @@ 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",
|
||||
|
|
@ -977,7 +972,6 @@ class ModelUtils:
|
|||
|
||||
|
||||
demo_models = {
|
||||
"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]],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue