@hazeljs/agent 0.2.0-beta.48 → 0.2.0-beta.50
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/README.md +4 -2
- package/coverage/clover.xml +281 -263
- package/coverage/lcov-report/index.html +30 -30
- package/coverage/lcov.info +454 -417
- package/dist/agent.module.d.ts +16 -1
- package/dist/agent.module.d.ts.map +1 -1
- package/dist/agent.module.js +13 -4
- package/dist/agent.module.js.map +1 -1
- package/dist/executor/tool.executor.d.ts +3 -1
- package/dist/executor/tool.executor.d.ts.map +1 -1
- package/dist/executor/tool.executor.js +33 -2
- package/dist/executor/tool.executor.js.map +1 -1
- package/dist/runtime/agent.runtime.d.ts +2 -1
- package/dist/runtime/agent.runtime.d.ts.map +1 -1
- package/dist/runtime/agent.runtime.js +1 -1
- package/dist/runtime/agent.runtime.js.map +1 -1
- package/dist/types/agent.types.d.ts +15 -0
- package/dist/types/agent.types.d.ts.map +1 -1
- package/dist/types/agent.types.js.map +1 -1
- package/logs/combined.log +1 -1
- package/package.json +10 -5
- package/tsconfig.tsbuildinfo +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @hazeljs/agent
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Build AI agents that actually do things.**
|
|
4
|
+
|
|
5
|
+
Stateful, tool-using, memory-enabled. Define tools with `@Tool`, add approval workflows for sensitive actions, integrate RAG. Production-grade agents without the complexity.
|
|
4
6
|
|
|
5
7
|
[](https://www.npmjs.com/package/@hazeljs/agent)
|
|
6
8
|
[](https://www.npmjs.com/package/@hazeljs/agent)
|
|
@@ -8,7 +10,7 @@
|
|
|
8
10
|
|
|
9
11
|
## Overview
|
|
10
12
|
|
|
11
|
-
|
|
13
|
+
Unlike stateless request handlers, agents are:
|
|
12
14
|
|
|
13
15
|
- **Stateful** - Maintain context across multiple steps
|
|
14
16
|
- **Long-running** - Execute complex workflows over time
|