fix(rebase): resolve main drift and restore CI contracts

This commit is contained in:
Chummy 2026-02-17 00:28:28 +08:00
parent b2dd3582a4
commit 413ecfd143
3 changed files with 9 additions and 3 deletions

View file

@ -74,7 +74,7 @@ pub fn all_tools(
browser_config: &crate::config::BrowserConfig,
http_config: &crate::config::HttpRequestConfig,
workspace_dir: &std::path::Path,
agents: &HashMap<String, DelegateAgentConfig, S>,
agents: &HashMap<String, DelegateAgentConfig>,
fallback_api_key: Option<&str>,
config: &crate::config::Config,
) -> Vec<Box<dyn Tool>> {
@ -104,7 +104,7 @@ pub fn all_tools_with_runtime(
browser_config: &crate::config::BrowserConfig,
http_config: &crate::config::HttpRequestConfig,
workspace_dir: &std::path::Path,
agents: &HashMap<String, DelegateAgentConfig, S>,
agents: &HashMap<String, DelegateAgentConfig>,
fallback_api_key: Option<&str>,
config: &crate::config::Config,
) -> Vec<Box<dyn Tool>> {