diff --git a/src/agents/athena/index.ts b/src/agents/athena/index.ts index c47ed1796..1709f7cfe 100644 --- a/src/agents/athena/index.ts +++ b/src/agents/athena/index.ts @@ -2,6 +2,4 @@ export * from "./types" export * from "./agent" export * from "./council-member-agent" export * from "./model-parser" -export * from "./council-prompt" -export * from "./council-orchestrator" diff --git a/src/agents/athena/types.ts b/src/agents/athena/types.ts index 2809e95a0..cb668c0ce 100644 --- a/src/agents/athena/types.ts +++ b/src/agents/athena/types.ts @@ -7,21 +7,3 @@ export interface CouncilMemberConfig { export interface CouncilConfig { members: CouncilMemberConfig[] } - -export interface CouncilLaunchFailure { - member: CouncilMemberConfig - error: string -} - -export interface CouncilLaunchedMember { - member: CouncilMemberConfig - taskId: string -} - -/** Return type of executeCouncil — only tracks launch outcomes, not task completion */ -export interface CouncilLaunchResult { - question: string - launched: CouncilLaunchedMember[] - failures: CouncilLaunchFailure[] - totalMembers: number -}