fix(agent): parse tool-call alias tags in channel runtime

This commit is contained in:
Chummy 2026-02-17 23:17:30 +08:00
parent c6d068a371
commit 4243d8ec86
4 changed files with 133 additions and 6 deletions

View file

@ -96,6 +96,7 @@ pub fn config_from_wizard_choice(choice: usize, devices: &[DiscoveredDevice]) ->
pub fn handle_command(cmd: crate::HardwareCommands, _config: &Config) -> Result<()> {
#[cfg(not(feature = "hardware"))]
{
let _ = &cmd;
println!("Hardware discovery requires the 'hardware' feature.");
println!("Build with: cargo build --features hardware");
return Ok(());