add qwen2.5vl model

This commit is contained in:
jhqxxx
2025-09-22 16:38:12 +08:00
parent 17a2540484
commit 0b0076cdc9
25 changed files with 6662 additions and 0 deletions
+18
View File
@@ -7,3 +7,21 @@ license = "Apache-2.0"
description = "aha"
[dependencies]
candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.9.1"}
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.9.1"}
candle-transformers = { git = "https://github.com/huggingface/candle.git", version = "0.9.1"}
candle-flash-attn = { git = "https://github.com/huggingface/candle.git", optional = true }
serde = "1.0.226"
serde_json = "1.0.145"
anyhow = "1.0.100"
ffmpeg-next = "8.0.0"
image = "0.25.8"
reqwest = { version = "0.12.23", features = ["blocking"] }
base64 = "0.22.1"
num = "0.4.3"
minijinja = "2.12.0"
tokenizers = "0.22.1"
openai_dive = "1.3.0"
[features]
flash-attn=["candle-flash-attn"]
cuda=["candle-nn/cuda", "candle-core/cuda", "candle-transformers/cuda"]