Merge branch 'pr/jasonzou/31'

This commit is contained in:
jhqxxx
2026-03-07 14:25:44 +08:00
11 changed files with 2600 additions and 3 deletions
+5
View File
@@ -219,6 +219,7 @@ fn run_list(args: ListArgs) -> anyhow::Result<()> {
WhichModel::VoxCPM1_5,
WhichModel::GlmASRNano2512,
WhichModel::FunASRNano2512,
WhichModel::GlmOCR,
];
if args.json {
@@ -466,6 +467,10 @@ fn run_run(args: RunArgs) -> anyhow::Result<()> {
use aha::exec::fun_asr_nano::FunASRNanoExec;
FunASRNanoExec::run(&input, output.as_deref(), &weight_path)?;
}
WhichModel::GlmOCR => {
use aha::exec::glm_ocr::GlmOcrExec;
GlmOcrExec::run(&input, output.as_deref(), &weight_path)?;
}
}
Ok(())