From 59742de0305d84ebb22048d50ad6cd82064d5e0f Mon Sep 17 00:00:00 2001 From: PPraneesh Date: Sun, 4 May 2025 09:52:57 +0530 Subject: [PATCH] add exports of AgentTool, AgentTools in index.ts --- typescript/package-lock.json | 4 ++-- typescript/src/index.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/typescript/package-lock.json b/typescript/package-lock.json index 313f7dfd..0b2878c6 100644 --- a/typescript/package-lock.json +++ b/typescript/package-lock.json @@ -1,12 +1,12 @@ { "name": "multi-agent-orchestrator", - "version": "0.1.5", + "version": "0.1.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "multi-agent-orchestrator", - "version": "0.1.5", + "version": "0.1.6", "license": "Apache-2.0", "dependencies": { "@anthropic-ai/sdk": "^0.24.3", diff --git a/typescript/src/index.ts b/typescript/src/index.ts index 20736975..3e1d3af9 100644 --- a/typescript/src/index.ts +++ b/typescript/src/index.ts @@ -31,7 +31,7 @@ export { MultiAgentOrchestrator } from "./orchestrator"; export { AgentOverlapAnalyzer, AnalysisResult } from "./agentOverlapAnalyzer"; export { ConversationMessage, ParticipantRole } from "./types" - +export { AgentTools, AgentTool} from "./utils/tool" export { isClassifierToolInput } from './utils/helpers'