@lov3kaizen/agentsea-core 0.1.0 → 0.1.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/README.md +10 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# @agentsea
|
|
1
|
+
# @lov3kaizen/agentsea-core
|
|
2
2
|
|
|
3
3
|
**Unite and orchestrate AI agents** - Framework-agnostic core library for building agentic AI applications in Node.js.
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@lov3kaizen/agentsea-core)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
[](https://www.typescriptlang.org/)
|
|
8
8
|
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
## Installation
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm install @agentsea
|
|
25
|
+
npm install @lov3kaizen/agentsea-core
|
|
26
26
|
# or
|
|
27
|
-
pnpm add @agentsea
|
|
27
|
+
pnpm add @lov3kaizen/agentsea-core
|
|
28
28
|
# or
|
|
29
|
-
yarn add @agentsea
|
|
29
|
+
yarn add @lov3kaizen/agentsea-core
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Quick Start
|
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
ToolRegistry,
|
|
39
39
|
BufferMemory,
|
|
40
40
|
calculatorTool,
|
|
41
|
-
} from '@agentsea
|
|
41
|
+
} from '@lov3kaizen/agentsea-core';
|
|
42
42
|
|
|
43
43
|
// Create agent
|
|
44
44
|
const agent = new Agent(
|
|
@@ -72,7 +72,7 @@ import {
|
|
|
72
72
|
OpenAIProvider,
|
|
73
73
|
AnthropicProvider,
|
|
74
74
|
OllamaProvider,
|
|
75
|
-
} from '@agentsea
|
|
75
|
+
} from '@lov3kaizen/agentsea-core';
|
|
76
76
|
|
|
77
77
|
// Use any provider
|
|
78
78
|
const geminiAgent = new Agent(config, new GeminiProvider(apiKey), toolRegistry);
|
|
@@ -99,9 +99,9 @@ Full documentation available at [agentsea.dev](https://agentsea.dev)
|
|
|
99
99
|
|
|
100
100
|
## Related Packages
|
|
101
101
|
|
|
102
|
-
- [@agentsea
|
|
103
|
-
- [@agentsea
|
|
104
|
-
- [@agentsea
|
|
102
|
+
- [@lov3kaizen/agentsea-cli](https://www.npmjs.com/package/@lov3kaizen/agentsea-cli) - Command-line interface
|
|
103
|
+
- [@lov3kaizen/agentsea-nestjs](https://www.npmjs.com/package/@lov3kaizen/agentsea-nestjs) - NestJS integration
|
|
104
|
+
- [@lov3kaizen/agentsea-react](https://www.npmjs.com/package/@lov3kaizen/agentsea-react) - React components
|
|
105
105
|
|
|
106
106
|
## License
|
|
107
107
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lov3kaizen/agentsea-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "AgentSea - Unite and orchestrate AI agents. A production-ready ADK for building agentic AI applications with multi-provider support.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"engines": {
|
|
73
73
|
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
|
-
"author": "
|
|
75
|
+
"author": "lovekaizen",
|
|
76
76
|
"license": "MIT",
|
|
77
77
|
"repository": {
|
|
78
78
|
"type": "git",
|