123 lines
4.1 KiB
Rust
123 lines
4.1 KiB
Rust
use std::{pin::pin, time::Instant};
|
|
|
|
use aha::models::{GenerateModel, qwen3vl::generate::Qwen3VLGenerateModel};
|
|
use aha_openai_dive::v1::resources::chat::ChatCompletionParameters;
|
|
use anyhow::Result;
|
|
use rocket::futures::StreamExt;
|
|
|
|
#[test]
|
|
fn qwen3vl_generate() -> Result<()> {
|
|
// test with cuda: RUST_BACKTRACE=1 cargo test -F cuda,ffmpeg qwen3vl_generate -r -- --nocapture
|
|
|
|
let model_path = "/home/jhq/huggingface_model/Qwen/Qwen3-VL-2B-Instruct/";
|
|
|
|
let message = r#"
|
|
{
|
|
"model": "qwen3vl",
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{
|
|
"type": "image",
|
|
"image_url":
|
|
{
|
|
"url": "file://./assets/img/ocr_test1.png"
|
|
}
|
|
},
|
|
{
|
|
"type": "text",
|
|
"text": "请分析图片并提取所有可见文本内容,按从左到右、从上到下的布局,返回纯文本"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
"#;
|
|
let mes: ChatCompletionParameters = serde_json::from_str(message)?;
|
|
let i_start = Instant::now();
|
|
let mut qwen3vl = Qwen3VLGenerateModel::init(model_path, None, None)?;
|
|
let i_duration = i_start.elapsed();
|
|
println!("Time elapsed in load model is: {:?}", i_duration);
|
|
|
|
let i_start = Instant::now();
|
|
let res = qwen3vl.generate(mes)?;
|
|
let i_duration = i_start.elapsed();
|
|
println!("generate: \n {:?}", res);
|
|
println!("Time elapsed in generate is: {:?}", i_duration);
|
|
Ok(())
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn qwen3vl_stream() -> Result<()> {
|
|
// test with cuda: RUST_BACKTRACE=1 cargo test -F cuda qwen3vl_stream -r -- --nocapture
|
|
|
|
let model_path = "/home/jhq/huggingface_model/Qwen/Qwen3-VL-2B-Instruct/";
|
|
|
|
let message = r#"
|
|
{
|
|
"model": "qwen3vl",
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": [
|
|
{
|
|
"type": "video",
|
|
"video_url":
|
|
{
|
|
"url": "./assets/video/video_test.mp4"
|
|
}
|
|
},
|
|
{
|
|
"type": "text",
|
|
"text": "视频中发生了什么?, 现在几点了"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"tools": [
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_time",
|
|
"description": "当你想知道现在的时间时非常有用。",
|
|
"parameters": {}
|
|
}
|
|
},
|
|
{
|
|
"type": "function",
|
|
"function": {
|
|
"name": "get_current_weather",
|
|
"description": "当你想查询指定城市的天气时非常有用。",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "城市或县区,比如北京市、杭州市、余杭区等。"
|
|
}
|
|
},
|
|
"required": ["location"]
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"tool_choice": null
|
|
}
|
|
"#;
|
|
let mes: ChatCompletionParameters = serde_json::from_str(message)?;
|
|
let i_start = Instant::now();
|
|
let mut qwen3vl = Qwen3VLGenerateModel::init(model_path, None, None)?;
|
|
let i_duration = i_start.elapsed();
|
|
println!("Time elapsed in load model is: {:?}", i_duration);
|
|
|
|
let i_start = Instant::now();
|
|
let mut stream = pin!(qwen3vl.generate_stream(mes)?);
|
|
while let Some(item) = stream.next().await {
|
|
println!("generate: \n {:?}", item);
|
|
}
|
|
let i_duration = i_start.elapsed();
|
|
println!("Time elapsed in generate is: {:?}", i_duration);
|
|
Ok(())
|
|
}
|