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 {