From fba15520dca8fe257d7a34f081fdc3935e1365d2 Mon Sep 17 00:00:00 2001 From: argenis de la rosa Date: Thu, 19 Mar 2026 15:32:23 -0400 Subject: [PATCH] fix: add missing autonomy_level field to test ChannelRuntimeContext The full_autonomy_prompt test was missing the autonomy_level field added to ChannelRuntimeContext by a recently merged PR. --- src/channels/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/channels/mod.rs b/src/channels/mod.rs index e056960f1..2bf24365a 100644 --- a/src/channels/mod.rs +++ b/src/channels/mod.rs @@ -7804,6 +7804,7 @@ BTC is currently around $65,000 based on latest tool output."# approval_manager: Arc::new(ApprovalManager::for_non_interactive( &crate::config::AutonomyConfig::default(), )), + autonomy_level: AutonomyLevel::default(), activated_tools: None, });