From 292f6f1b1875d296ea9b92dc45f87495b54d99c0 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 10 Dec 2025 15:22:51 +0530 Subject: [PATCH] feat: include resovle tool for the primary agent --- enterprise/app/models/captain/assistant.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/enterprise/app/models/captain/assistant.rb b/enterprise/app/models/captain/assistant.rb index 4f039d57a..338c18006 100644 --- a/enterprise/app/models/captain/assistant.rb +++ b/enterprise/app/models/captain/assistant.rb @@ -94,7 +94,8 @@ class Captain::Assistant < ApplicationRecord def agent_tools [ self.class.resolve_tool_class('faq_lookup').new(self), - self.class.resolve_tool_class('handoff').new(self) + self.class.resolve_tool_class('handoff').new(self), + self.class.resolve_tool_class('resolve').new(self) ] end