Skip to content

Commit fb908af

Browse files
authored
Merge pull request #54 from XavierDK/xavierdk/undefined-asynciterator
Explicitely copy AsyncIterator
2 parents 3198851 + 140fdce commit fb908af

File tree

4 files changed

+945
-1098
lines changed

4 files changed

+945
-1098
lines changed

.changeset/clean-cherries-attend.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@statelyai/agent": patch
3+
---
4+
5+
- Addressing an issue where the fullStream property was not properly copied when using the spread operator (...). The problem occurred because fullStream is an iterator, and as such, it was not included in the shallow copy of the result object.
6+
- Update all packages

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@
2727
"license": "MIT",
2828
"devDependencies": {
2929
"@changesets/changelog-github": "^0.5.0",
30-
"@changesets/cli": "^2.27.7",
30+
"@changesets/cli": "^2.27.8",
3131
"@langchain/community": "^0.0.53",
3232
"@langchain/core": "^0.1.63",
3333
"@langchain/openai": "^0.0.28",
34-
"@types/node": "^20.14.14",
34+
"@types/node": "^20.16.9",
3535
"@types/object-hash": "^3.0.6",
3636
"dotenv": "^16.4.5",
37-
"json-schema-to-ts": "^3.1.0",
37+
"json-schema-to-ts": "^3.1.1",
3838
"ts-node": "^10.9.2",
39-
"tsup": "^8.2.4",
40-
"typescript": "^5.5.4",
41-
"vitest": "^2.0.5",
39+
"tsup": "^8.3.0",
40+
"typescript": "^5.6.2",
41+
"vitest": "^2.1.1",
4242
"wikipedia": "^2.1.2",
4343
"zod": "^3.23.8"
4444
},
@@ -47,10 +47,10 @@
4747
},
4848
"dependencies": {
4949
"@ai-sdk/openai": "^0.0.40",
50-
"@xstate/graph": "^2.0.0",
51-
"ai": "^3.3.2",
50+
"@xstate/graph": "^2.0.1",
51+
"ai": "^3.4.6",
5252
"object-hash": "^3.0.0",
53-
"xstate": "^5.17.1"
53+
"xstate": "^5.18.2"
5454
},
5555
"packageManager": "[email protected]"
5656
}

0 commit comments

Comments
 (0)