From 130bce86a1527bbb1290ea7840e55eeff150a1af Mon Sep 17 00:00:00 2001 From: John Costa Date: Sat, 19 Apr 2025 10:30:49 +0100 Subject: [PATCH] fix: enabling note agent --- backend/agents/orchestrator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/agents/orchestrator.go b/backend/agents/orchestrator.go index d77a84f..3ec656e 100644 --- a/backend/agents/orchestrator.go +++ b/backend/agents/orchestrator.go @@ -139,7 +139,7 @@ func NewOrchestratorAgent(log *log.Logger, noteAgent NoteAgent, contactAgent cli }) agent.ToolHandler.AddTool("noteAgent", func(info client.ToolHandlerInfo, args string, call client.ToolCall) (any, error) { - // go noteAgent.GetNotes(info.UserId, info.ImageId, imageName, imageData) + go noteAgent.GetNotes(info.UserId, info.ImageId, imageName, imageData) return "noteAgent called successfully", nil })