@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.
- package/dist/agents/Agent.d.ts +1 -1
- package/dist/core.d.ts +0 -1
- package/dist/core.js +2 -1
- package/package.json +1 -1
package/dist/agents/Agent.d.ts
CHANGED
|
@@ -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 |
|
|
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
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
|
-
|
|
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);
|