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:
hlohaus 2025-03-23 05:27:52 +01:00
parent 97f1964bb6
commit 8eaaf5db95
21 changed files with 356 additions and 128 deletions

View file

@ -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]],