From c0f6e39b3e0e7f21402a4df15d6aa9a37c3ae717 Mon Sep 17 00:00:00 2001 From: sanil-23 Date: Fri, 24 Apr 2026 04:48:46 +0530 Subject: [PATCH] feat(memory_tree): Phase 4 retrieval tools for hierarchical memory (#710) (#831) Co-authored-by: Steven Enamakel --- src/openhuman/memory/tree/score/embed/ollama.rs | 1 - src/openhuman/webhooks/bus.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/openhuman/memory/tree/score/embed/ollama.rs b/src/openhuman/memory/tree/score/embed/ollama.rs index dc98a6337..ba98bd810 100644 --- a/src/openhuman/memory/tree/score/embed/ollama.rs +++ b/src/openhuman/memory/tree/score/embed/ollama.rs @@ -38,7 +38,6 @@ pub const DEFAULT_TIMEOUT_MS: u64 = 10_000; pub struct OllamaEmbedder { endpoint: String, model: String, - #[allow(dead_code)] timeout: Duration, client: reqwest::Client, } diff --git a/src/openhuman/webhooks/bus.rs b/src/openhuman/webhooks/bus.rs index cf0134e04..5e229a2fb 100644 --- a/src/openhuman/webhooks/bus.rs +++ b/src/openhuman/webhooks/bus.rs @@ -117,7 +117,7 @@ impl EventHandler for WebhookRequestSubscriber { // Spawn the triage pipeline so we don't block the // broadcast channel's dispatch task during LLM calls. let corr = correlation_id.clone(); - let skill = reg.agent_id.clone().or_else(|| Some(reg.skill_id.clone())); + let _skill = reg.agent_id.clone().or_else(|| Some(reg.skill_id.clone())); tokio::spawn(async move { let result = tokio::time::timeout(std::time::Duration::from_secs(60), async {