@agentic-eng/easa 0.1.0-alpha.0 → 0.1.0-beta.1
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/index.cjs +40 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -8,5 +8,45 @@ Object.defineProperty(exports, "Agent", {
|
|
|
8
8
|
enumerable: true,
|
|
9
9
|
get: function () { return agent.Agent; }
|
|
10
10
|
});
|
|
11
|
+
Object.defineProperty(exports, "AgentConfigError", {
|
|
12
|
+
enumerable: true,
|
|
13
|
+
get: function () { return agent.AgentConfigError; }
|
|
14
|
+
});
|
|
15
|
+
Object.defineProperty(exports, "ConsoleEventEmitter", {
|
|
16
|
+
enumerable: true,
|
|
17
|
+
get: function () { return agent.ConsoleEventEmitter; }
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports, "EasaError", {
|
|
20
|
+
enumerable: true,
|
|
21
|
+
get: function () { return agent.EasaError; }
|
|
22
|
+
});
|
|
23
|
+
Object.defineProperty(exports, "FlatFileMemoryProvider", {
|
|
24
|
+
enumerable: true,
|
|
25
|
+
get: function () { return agent.FlatFileMemoryProvider; }
|
|
26
|
+
});
|
|
27
|
+
Object.defineProperty(exports, "MaxIterationsError", {
|
|
28
|
+
enumerable: true,
|
|
29
|
+
get: function () { return agent.MaxIterationsError; }
|
|
30
|
+
});
|
|
31
|
+
Object.defineProperty(exports, "NoopEventEmitter", {
|
|
32
|
+
enumerable: true,
|
|
33
|
+
get: function () { return agent.NoopEventEmitter; }
|
|
34
|
+
});
|
|
35
|
+
Object.defineProperty(exports, "ProviderError", {
|
|
36
|
+
enumerable: true,
|
|
37
|
+
get: function () { return agent.ProviderError; }
|
|
38
|
+
});
|
|
39
|
+
Object.defineProperty(exports, "ReasoningParseError", {
|
|
40
|
+
enumerable: true,
|
|
41
|
+
get: function () { return agent.ReasoningParseError; }
|
|
42
|
+
});
|
|
43
|
+
Object.defineProperty(exports, "ToolExecutionError", {
|
|
44
|
+
enumerable: true,
|
|
45
|
+
get: function () { return agent.ToolExecutionError; }
|
|
46
|
+
});
|
|
47
|
+
Object.defineProperty(exports, "ToolRegistry", {
|
|
48
|
+
enumerable: true,
|
|
49
|
+
get: function () { return agent.ToolRegistry; }
|
|
50
|
+
});
|
|
11
51
|
//# sourceMappingURL=index.cjs.map
|
|
12
52
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Agent, AgentConfig } from '@agentic-eng/agent';
|
|
1
|
+
export { Agent, AgentConfig, AgentConfigError, AgentEvent, AgentEventEmitter, ChatChunk, ChatOptions, ChatResponse, ConsoleEventEmitter, EasaError, EventType, FlatFileMemoryProvider, InvokeOptions, InvokeResult, IterationResult, LLMProvider, LLMReasoningResponse, MaxIterationsError, MemoryEntry, MemoryProvider, Message, NoopEventEmitter, ProviderError, ReasoningAction, ReasoningParseError, ReasoningTrace, Role, TokenUsage, Tool, ToolCallRequest, ToolDefinition, ToolExecutionError, ToolInputSchema, ToolRegistry, ToolResult } from '@agentic-eng/agent';
|
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Agent, AgentConfig } from '@agentic-eng/agent';
|
|
1
|
+
export { Agent, AgentConfig, AgentConfigError, AgentEvent, AgentEventEmitter, ChatChunk, ChatOptions, ChatResponse, ConsoleEventEmitter, EasaError, EventType, FlatFileMemoryProvider, InvokeOptions, InvokeResult, IterationResult, LLMProvider, LLMReasoningResponse, MaxIterationsError, MemoryEntry, MemoryProvider, Message, NoopEventEmitter, ProviderError, ReasoningAction, ReasoningParseError, ReasoningTrace, Role, TokenUsage, Tool, ToolCallRequest, ToolDefinition, ToolExecutionError, ToolInputSchema, ToolRegistry, ToolResult } from '@agentic-eng/agent';
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { Agent } from '@agentic-eng/agent';
|
|
1
|
+
export { Agent, AgentConfigError, ConsoleEventEmitter, EasaError, FlatFileMemoryProvider, MaxIterationsError, NoopEventEmitter, ProviderError, ReasoningParseError, ToolExecutionError, ToolRegistry } from '@agentic-eng/agent';
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
|
3
3
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentic-eng/easa",
|
|
3
|
-
"version": "0.1.0-
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
4
|
"description": "EASA — Easy Agent System Architecture: A Minimal TypeScript Framework for Agent Systems.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"node": ">=18.0.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@agentic-eng/agent": "0.1.0-
|
|
46
|
+
"@agentic-eng/agent": "0.1.0-beta.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"tsup": "^8.0.0",
|