@atoms-agent/core 0.3.0 → 0.4.0
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 +2 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -10,13 +10,13 @@ toolkits, or host UI.
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
|
-
npm install @atoms-agent/core @atoms-agent/llm
|
|
13
|
+
npm install @atoms-agent/core@0.4.0 @atoms-agent/llm@0.4.0
|
|
14
14
|
```
|
|
15
15
|
|
|
16
16
|
Local tarball (publish-ready verification):
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install ./atoms-agent-llm-0.
|
|
19
|
+
npm install ./atoms-agent-llm-0.4.0.tgz ./atoms-agent-core-0.4.0.tgz
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atoms-agent/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent loop, tool runtime, event stream, context strategy, limits and cancellation",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"README.md",
|
|
37
37
|
"LICENSE"
|
|
38
38
|
],
|
|
39
|
+
"scripts": {
|
|
40
|
+
"test": "vitest run",
|
|
41
|
+
"build": "tsc -b"
|
|
42
|
+
},
|
|
39
43
|
"engines": {
|
|
40
44
|
"node": ">=22.13"
|
|
41
45
|
},
|
|
42
46
|
"dependencies": {
|
|
43
|
-
"@atoms-agent/llm": "0.
|
|
47
|
+
"@atoms-agent/llm": "workspace:0.4.0",
|
|
44
48
|
"ajv": "^8.17.1"
|
|
45
|
-
},
|
|
46
|
-
"scripts": {
|
|
47
|
-
"test": "vitest run",
|
|
48
|
-
"build": "tsc -b"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|