fix aha run multiple inputs bug

This commit is contained in:
jhqxxx
2026-01-31 18:37:28 +08:00
parent fe299c3401
commit 16e3aefaa7
16 changed files with 308 additions and 123 deletions
+1 -1
View File
@@ -33,5 +33,5 @@ pub trait ExecModel {
/// # Returns
/// * `Ok(())` on success
/// * `Err(anyhow::Error)` on failure
fn run(input: &str, output: Option<&str>, weight_path: &str) -> Result<()>;
fn run(input: &[String], output: Option<&str>, weight_path: &str) -> Result<()>;
}