@agentforge/core 0.1.1 → 0.1.3
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 +13 -5
- package/package.json +1 -1
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
|
@@ -119,13 +119,21 @@ const app = workflow.compile();
|
|
|
119
119
|
|
|
120
120
|
## Documentation
|
|
121
121
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
122
|
+
📚 **[Full Documentation](https://tvscoundrel.github.io/agentforge/)**
|
|
123
|
+
|
|
124
|
+
### Core Guides
|
|
125
|
+
- [Getting Started](https://tvscoundrel.github.io/agentforge/guide/getting-started)
|
|
126
|
+
- [Core Concepts](https://tvscoundrel.github.io/agentforge/guide/concepts/tools)
|
|
127
|
+
- [API Reference](https://tvscoundrel.github.io/agentforge/api/core)
|
|
128
|
+
|
|
129
|
+
### Tutorials
|
|
130
|
+
- [Building Your First Agent](https://tvscoundrel.github.io/agentforge/tutorials/first-agent)
|
|
131
|
+
- [Creating Custom Tools](https://tvscoundrel.github.io/agentforge/tutorials/custom-tools)
|
|
132
|
+
- [Advanced Patterns](https://tvscoundrel.github.io/agentforge/tutorials/advanced-patterns)
|
|
125
133
|
|
|
126
134
|
## Examples
|
|
127
135
|
|
|
128
|
-
See the [examples](
|
|
136
|
+
See the [examples documentation](https://tvscoundrel.github.io/agentforge/examples/react-agent) for complete working examples.
|
|
129
137
|
|
|
130
138
|
## Development
|
|
131
139
|
|
|
@@ -145,5 +153,5 @@ pnpm typecheck
|
|
|
145
153
|
|
|
146
154
|
## License
|
|
147
155
|
|
|
148
|
-
MIT ©
|
|
156
|
+
MIT © Tom Van Schoor
|
|
149
157
|
|