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 })