huskies: merge 1039
This commit is contained in:
@@ -4,7 +4,7 @@ use serde_json::Value;
|
||||
|
||||
use super::{
|
||||
agent_tools, diagnostics, git_tools, merge_tools, qa_tools, shell_tools, status_tools,
|
||||
story_tools, wizard_tools,
|
||||
story_tools, timer_tools, wizard_tools,
|
||||
};
|
||||
use crate::http::context::AppContext;
|
||||
|
||||
@@ -128,6 +128,10 @@ pub async fn dispatch_tool_call(
|
||||
"wizard_confirm" => wizard_tools::tool_wizard_confirm(ctx),
|
||||
"wizard_skip" => wizard_tools::tool_wizard_skip(ctx),
|
||||
"wizard_retry" => wizard_tools::tool_wizard_retry(ctx),
|
||||
// Scheduled timer tools
|
||||
"schedule_timer" => timer_tools::tool_schedule_timer(&args, ctx),
|
||||
"list_timers" => timer_tools::tool_list_timers(ctx),
|
||||
"cancel_timer" => timer_tools::tool_cancel_timer(&args, ctx),
|
||||
_ => Err(format!("Unknown tool: {tool_name}")),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user