@tesselate-digital/notion-agent-hive 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,5 @@
1
+ import type { AgentDefinition } from "./types";
2
+ export declare function createThinkerInvestigatorAgent(model?: string | Array<string | {
3
+ id: string;
4
+ variant?: string;
5
+ }>, variant?: string): AgentDefinition;
@@ -1,5 +1,5 @@
1
1
  import type { AgentDefinition } from "./types";
2
- export declare function createThinkerAgent(model?: string | Array<string | {
2
+ export declare function createThinkerPlannerAgent(model?: string | Array<string | {
3
3
  id: string;
4
4
  variant?: string;
5
5
  }>, variant?: string): AgentDefinition;
@@ -0,0 +1,5 @@
1
+ import type { AgentDefinition } from "./types";
2
+ export declare function createThinkerRefinerAgent(model?: string | Array<string | {
3
+ id: string;
4
+ variant?: string;
5
+ }>, variant?: string): AgentDefinition;
package/dist/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  export type { AgentDefinition } from "./agents/types";
2
2
  export { loadConfig, DEFAULT_MODELS, DEFAULT_VARIANTS } from "./config";
3
3
  export { createCoordinatorAgent } from "./agents/coordinator";
4
- export { createThinkerAgent } from "./agents/thinker";
4
+ export { createThinkerPlannerAgent } from "./agents/thinker-planner";
5
+ export { createThinkerInvestigatorAgent } from "./agents/thinker-investigator";
6
+ export { createThinkerRefinerAgent } from "./agents/thinker-refiner";
5
7
  export { createExecutorAgent } from "./agents/executor";
6
8
  export { createReviewerAgent } from "./agents/reviewer";
7
9
  export { ForegroundFallbackManager } from "./fallback";