@agentforge/patterns 0.1.2 → 0.1.4
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/LICENSE +22 -0
- package/README.md +19 -15
- package/package.json +2 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Tom Van Schoor
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
package/README.md
CHANGED
|
@@ -288,21 +288,25 @@ console.log(result.response); // Aggregated response
|
|
|
288
288
|
|
|
289
289
|
## Documentation
|
|
290
290
|
|
|
291
|
-
### Guides
|
|
292
|
-
- [ReAct
|
|
293
|
-
- [Plan-Execute Pattern Guide](
|
|
294
|
-
- [Reflection Pattern Guide](
|
|
295
|
-
- [Multi-Agent Pattern Guide](
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
- [
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
- [
|
|
291
|
+
### 📖 Pattern Guides (GitHub Pages)
|
|
292
|
+
- 🤖 **[ReAct Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/react)** - Comprehensive ReAct usage guide
|
|
293
|
+
- 📋 **[Plan-Execute Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/plan-execute)** - Comprehensive Plan-Execute guide
|
|
294
|
+
- 🔄 **[Reflection Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/reflection)** - Comprehensive Reflection guide
|
|
295
|
+
- 👥 **[Multi-Agent Pattern Guide](https://tvscoundrel.github.io/agentforge/guide/patterns/multi-agent)** - Comprehensive Multi-Agent guide
|
|
296
|
+
|
|
297
|
+
### 💡 Examples (GitHub Pages)
|
|
298
|
+
- **[ReAct Examples](https://tvscoundrel.github.io/agentforge/examples/react-agent)** - ReAct pattern examples
|
|
299
|
+
- **[Plan-Execute Examples](https://tvscoundrel.github.io/agentforge/examples/plan-execute)** - Plan-Execute pattern examples
|
|
300
|
+
- **[Reflection Examples](https://tvscoundrel.github.io/agentforge/examples/reflection)** - Reflection pattern examples
|
|
301
|
+
- **[Multi-Agent Examples](https://tvscoundrel.github.io/agentforge/examples/multi-agent)** - Multi-Agent pattern examples
|
|
302
|
+
|
|
303
|
+
### 📂 Source Documentation
|
|
304
|
+
For contributors and advanced users, detailed implementation docs are available in the repository:
|
|
305
|
+
- [Pattern Comparison](./docs/pattern-comparison.md) - Detailed pattern comparison
|
|
306
|
+
- [ReAct Implementation](./docs/react-pattern.md) - ReAct implementation details
|
|
307
|
+
- [Plan-Execute Implementation](./docs/plan-execute-pattern.md) - Plan-Execute implementation details
|
|
308
|
+
- [Reflection Implementation](./docs/reflection-pattern.md) - Reflection implementation details
|
|
309
|
+
- [Multi-Agent Implementation](./docs/multi-agent-pattern.md) - Multi-Agent implementation details
|
|
306
310
|
|
|
307
311
|
## API Reference
|
|
308
312
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentforge/patterns",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Agent patterns (ReAct, Planner-Executor) for AgentForge framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@langchain/core": "^0.3.29",
|
|
40
40
|
"@langchain/langgraph": "^0.2.20",
|
|
41
41
|
"zod": "^3.23.8",
|
|
42
|
-
"@agentforge/core": "0.1.
|
|
42
|
+
"@agentforge/core": "0.1.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^9.17.0",
|