@agentionai/agents 0.4.1 → 0.4.2

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.
@@ -23,7 +23,7 @@ type MistralAgentConfig = Omit<BaseAgentConfig, "vendor" | "model"> & {
23
23
  };
24
24
  type AgentConfig = ClaudeAgentConfig | OpenAIAgentConfig | GeminiAgentConfig | MistralAgentConfig;
25
25
  export declare class Agent {
26
- static create(config: AgentConfig, history?: History): ClaudeAgent | OpenAiAgent | GeminiAgent | MistralAgent;
26
+ static create(config: AgentConfig, history?: History): ClaudeAgent | GeminiAgent | OpenAiAgent | MistralAgent;
27
27
  }
28
28
  export {};
29
29
  //# sourceMappingURL=Agent.d.ts.map
package/dist/core.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  export * from "./agents/BaseAgent";
2
- export * from "./agents/Agent";
3
2
  export * from "./agents/model-types";
4
3
  export * from "./agents/AgentConfig";
5
4
  export * from "./agents/AgentEvent";
package/dist/core.js CHANGED
@@ -16,7 +16,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  // Core functionality without any agent implementations
18
18
  __exportStar(require("./agents/BaseAgent"), exports);
19
- __exportStar(require("./agents/Agent"), exports);
19
+ // Note: agents/Agent.ts is NOT exported here as it imports all agent implementations
20
+ // Use specific agent entry points instead (claude.ts, openai.ts, etc.)
20
21
  __exportStar(require("./agents/model-types"), exports);
21
22
  __exportStar(require("./agents/AgentConfig"), exports);
22
23
  __exportStar(require("./agents/AgentEvent"), exports);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agentionai/agents",
3
3
  "author": "Laurent Zuijdwijk",
4
- "version": "0.4.1",
4
+ "version": "0.4.2",
5
5
  "description": "Agent Library",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",