@copilotkit/runtime 1.10.5-next.2 → 1.10.5-next.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.
Files changed (31) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/{chunk-AK5H4K5T.mjs → chunk-CSLNUW6J.mjs} +2 -2
  3. package/dist/{chunk-IONJJRU6.mjs → chunk-HN4YX4EY.mjs} +2 -2
  4. package/dist/{chunk-H5ZYJ27F.mjs → chunk-HZ4NCFZ4.mjs} +6 -2
  5. package/dist/{chunk-H5ZYJ27F.mjs.map → chunk-HZ4NCFZ4.mjs.map} +1 -1
  6. package/dist/{chunk-AJIPGTPV.mjs → chunk-LP42TOAG.mjs} +2 -2
  7. package/dist/{chunk-G3STE4EL.mjs → chunk-S5ZNZTS3.mjs} +11 -11
  8. package/dist/{chunk-G3STE4EL.mjs.map → chunk-S5ZNZTS3.mjs.map} +1 -1
  9. package/dist/index.js +14 -10
  10. package/dist/index.js.map +1 -1
  11. package/dist/index.mjs +5 -5
  12. package/dist/lib/index.js +14 -10
  13. package/dist/lib/index.js.map +1 -1
  14. package/dist/lib/index.mjs +5 -5
  15. package/dist/lib/integrations/index.js +10 -10
  16. package/dist/lib/integrations/index.js.map +1 -1
  17. package/dist/lib/integrations/index.mjs +4 -4
  18. package/dist/lib/integrations/nest/index.js +10 -10
  19. package/dist/lib/integrations/nest/index.js.map +1 -1
  20. package/dist/lib/integrations/nest/index.mjs +2 -2
  21. package/dist/lib/integrations/node-express/index.js +10 -10
  22. package/dist/lib/integrations/node-express/index.js.map +1 -1
  23. package/dist/lib/integrations/node-express/index.mjs +2 -2
  24. package/dist/lib/integrations/node-http/index.js +10 -10
  25. package/dist/lib/integrations/node-http/index.js.map +1 -1
  26. package/dist/lib/integrations/node-http/index.mjs +1 -1
  27. package/package.json +11 -11
  28. package/src/lib/runtime/langgraph/langgraph-agent.ts +1 -0
  29. /package/dist/{chunk-AK5H4K5T.mjs.map → chunk-CSLNUW6J.mjs.map} +0 -0
  30. /package/dist/{chunk-IONJJRU6.mjs.map → chunk-HN4YX4EY.mjs.map} +0 -0
  31. /package/dist/{chunk-AJIPGTPV.mjs.map → chunk-LP42TOAG.mjs.map} +0 -0
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  copilotRuntimeNodeHttpEndpoint
3
- } from "../../../chunk-G3STE4EL.mjs";
3
+ } from "../../../chunk-S5ZNZTS3.mjs";
4
4
  import "../../../chunk-SHBDMA63.mjs";
5
5
  import "../../../chunk-F7IANE7Z.mjs";
6
6
  import "../../../chunk-XWBDEXDA.mjs";
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
- "version": "1.10.5-next.2",
12
+ "version": "1.10.5-next.4",
13
13
  "sideEffects": false,
14
14
  "main": "./dist/index.js",
15
15
  "module": "./dist/index.mjs",
@@ -37,11 +37,11 @@
37
37
  "tsconfig": "1.4.6"
38
38
  },
39
39
  "dependencies": {
40
- "@ag-ui/client": "^0.0.37",
41
- "@ag-ui/core": "^0.0.37",
42
- "@ag-ui/encoder": "^0.0.37",
43
- "@ag-ui/langgraph": "^0.0.13",
44
- "@ag-ui/proto": "^0.0.37",
40
+ "@ag-ui/client": "^0.0.38",
41
+ "@ag-ui/core": "^0.0.38",
42
+ "@ag-ui/encoder": "^0.0.38",
43
+ "@ag-ui/langgraph": "^0.0.16",
44
+ "@ag-ui/proto": "^0.0.38",
45
45
  "@anthropic-ai/sdk": "^0.57.0",
46
46
  "@graphql-yoga/plugin-defer-stream": "^3.3.1",
47
47
  "@langchain/aws": "^0.1.9",
@@ -67,13 +67,13 @@
67
67
  "rxjs": "7.8.1",
68
68
  "type-graphql": "2.0.0-rc.1",
69
69
  "zod": "^3.23.3",
70
- "@copilotkit/shared": "1.10.5-next.2"
70
+ "@copilotkit/shared": "1.10.5-next.4"
71
71
  },
72
72
  "peerDependencies": {
73
- "@ag-ui/client": ">=0.0.37",
74
- "@ag-ui/core": ">=0.0.37",
75
- "@ag-ui/encoder": ">=0.0.37",
76
- "@ag-ui/proto": ">=0.0.37"
73
+ "@ag-ui/client": ">=0.0.38",
74
+ "@ag-ui/core": ">=0.0.38",
75
+ "@ag-ui/encoder": ">=0.0.38",
76
+ "@ag-ui/proto": ">=0.0.38"
77
77
  },
78
78
  "keywords": [
79
79
  "copilotkit",
@@ -221,6 +221,7 @@ export class LangGraphAgent extends AGUILangGraphAgent {
221
221
  config: schemaKeys.config,
222
222
  input: schemaKeys.input ? [...schemaKeys.input, ...CONSTANT_KEYS] : null,
223
223
  output: schemaKeys.output ? [...schemaKeys.output, ...CONSTANT_KEYS] : null,
224
+ context: schemaKeys.context ? [...schemaKeys.context, ...CONSTANT_KEYS] : null,
224
225
  };
225
226
  }
226
227
  }