@statelyai/agent 1.1.3 → 1.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.
@@ -32,8 +32,6 @@ jobs:
32
32
  node-version: 20
33
33
  - name: install pnpm
34
34
  run: npm i pnpm@latest -g
35
- - name: Setup npmrc
36
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
37
35
  - name: setup pnpm config
38
36
  run: pnpm config set store-dir $PNPM_CACHE_FOLDER
39
37
  - name: install dependencies
@@ -45,3 +43,4 @@ jobs:
45
43
  version: pnpm run version
46
44
  env:
47
45
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @statelyai/agent
2
2
 
3
+ ## 1.1.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#47](https://github.com/statelyai/agent/pull/47) [`185c149`](https://github.com/statelyai/agent/commit/185c1498f63aef15a3194032df3dcdcb2b33d752) Thanks [@davidkpiano](https://github.com/davidkpiano)! - Update `ai` and `xstate` packages
8
+
3
9
  ## 1.1.3
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@statelyai/agent",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Stateful agents that make decisions based on finite-state machine models",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -20,14 +20,14 @@
20
20
  "@langchain/community": "^0.0.53",
21
21
  "@langchain/core": "^0.1.63",
22
22
  "@langchain/openai": "^0.0.28",
23
- "@types/node": "^20.14.13",
23
+ "@types/node": "^20.14.14",
24
24
  "@types/object-hash": "^3.0.6",
25
25
  "dotenv": "^16.4.5",
26
26
  "json-schema-to-ts": "^3.1.0",
27
27
  "ts-node": "^10.9.2",
28
- "tsup": "^8.2.3",
28
+ "tsup": "^8.2.4",
29
29
  "typescript": "^5.5.4",
30
- "vitest": "^2.0.4",
30
+ "vitest": "^2.0.5",
31
31
  "wikipedia": "^2.1.2",
32
32
  "zod": "^3.23.8"
33
33
  },
@@ -37,9 +37,9 @@
37
37
  "dependencies": {
38
38
  "@ai-sdk/openai": "^0.0.40",
39
39
  "@xstate/graph": "^2.0.0",
40
- "ai": "^3.2.40",
40
+ "ai": "^3.3.0",
41
41
  "object-hash": "^3.0.0",
42
- "xstate": "^5.16.0"
42
+ "xstate": "^5.17.1"
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsup src/index.ts --format cjs,esm --dts",