@agentforge/testing 0.1.1 โ 0.1.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/README.md +20 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -368,9 +368,28 @@ describe('ReAct Agent Integration Tests', () => {
|
|
|
368
368
|
- `calculatorTool` - Calculator tool
|
|
369
369
|
- `searchTool` - Search tool
|
|
370
370
|
|
|
371
|
+
## ๐ Documentation
|
|
372
|
+
|
|
373
|
+
- ๐ **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
|
|
374
|
+
- ๐ **[Quick Start](https://tvscoundrel.github.io/agentforge/guide/quick-start)**
|
|
375
|
+
- ๐งช **[Testing API Reference](https://tvscoundrel.github.io/agentforge/api/testing)**
|
|
376
|
+
- ๐ก **[Testing Tutorial](https://tvscoundrel.github.io/agentforge/tutorials/testing)**
|
|
377
|
+
|
|
378
|
+
## ๐ Links
|
|
379
|
+
|
|
380
|
+
- [GitHub Repository](https://github.com/TVScoundrel/agentforge)
|
|
381
|
+
- [npm Package](https://www.npmjs.com/package/@agentforge/testing)
|
|
382
|
+
- [Report Issues](https://github.com/TVScoundrel/agentforge/issues)
|
|
383
|
+
|
|
384
|
+
## ๐ Related Packages
|
|
385
|
+
|
|
386
|
+
- [@agentforge/core](https://www.npmjs.com/package/@agentforge/core) - Core abstractions
|
|
387
|
+
- [@agentforge/patterns](https://www.npmjs.com/package/@agentforge/patterns) - Agent patterns
|
|
388
|
+
- [@agentforge/tools](https://www.npmjs.com/package/@agentforge/tools) - Standard tools
|
|
389
|
+
- [@agentforge/cli](https://www.npmjs.com/package/@agentforge/cli) - CLI tool
|
|
390
|
+
|
|
371
391
|
## License
|
|
372
392
|
|
|
373
393
|
MIT
|
|
374
|
-
```
|
|
375
394
|
|
|
376
395
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentforge/testing",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Testing utilities and helpers for AgentForge framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@langchain/core": "^0.3.23",
|
|
22
22
|
"zod": "^3.24.1",
|
|
23
|
-
"@agentforge/core": "0.1.
|
|
24
|
-
"@agentforge/patterns": "0.1.
|
|
23
|
+
"@agentforge/core": "0.1.2",
|
|
24
|
+
"@agentforge/patterns": "0.1.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@eslint/js": "^9.17.0",
|