@copilotkit/runtime 1.8.15-next.1 → 1.9.0-next.2
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/CHANGELOG.md +11 -0
- package/dist/{chunk-WPALAYGE.mjs → chunk-6A27R7IP.mjs} +4 -2
- package/dist/chunk-6A27R7IP.mjs.map +1 -0
- package/dist/{chunk-2DM4G7DN.mjs → chunk-G4NOAQUA.mjs} +2 -2
- package/dist/{chunk-XRKKSNLV.mjs → chunk-S5TNKSNR.mjs} +2 -2
- package/dist/chunk-XB3TW5NJ.mjs +141 -0
- package/dist/chunk-XB3TW5NJ.mjs.map +1 -0
- package/dist/{chunk-76QVO5FK.mjs → chunk-XPTVSVNM.mjs} +2 -2
- package/dist/index.d.ts +3 -0
- package/dist/index.js +140 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -5
- package/dist/index.mjs.map +1 -1
- package/dist/lib/index.d.ts +154 -2
- package/dist/lib/index.js +140 -6
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +10 -5
- package/dist/lib/integrations/index.js +2 -1
- package/dist/lib/integrations/index.js.map +1 -1
- package/dist/lib/integrations/index.mjs +4 -4
- package/dist/lib/integrations/nest/index.js +2 -1
- package/dist/lib/integrations/nest/index.js.map +1 -1
- package/dist/lib/integrations/nest/index.mjs +2 -2
- package/dist/lib/integrations/node-express/index.js +2 -1
- package/dist/lib/integrations/node-express/index.js.map +1 -1
- package/dist/lib/integrations/node-express/index.mjs +2 -2
- package/dist/lib/integrations/node-http/index.js +2 -1
- package/dist/lib/integrations/node-http/index.js.map +1 -1
- package/dist/lib/integrations/node-http/index.mjs +1 -1
- package/package.json +3 -2
- package/src/lib/index.ts +1 -0
- package/src/lib/runtime/langgraph/langgraph-agent.ts +190 -0
- package/dist/chunk-Q6JA6YY3.mjs +0 -1
- package/dist/chunk-Q6JA6YY3.mjs.map +0 -1
- package/dist/chunk-WPALAYGE.mjs.map +0 -1
- /package/dist/{chunk-2DM4G7DN.mjs.map → chunk-G4NOAQUA.mjs.map} +0 -0
- /package/dist/{chunk-XRKKSNLV.mjs.map → chunk-S5TNKSNR.mjs.map} +0 -0
- /package/dist/{chunk-76QVO5FK.mjs.map → chunk-XPTVSVNM.mjs.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @copilotkit/runtime
|
|
2
2
|
|
|
3
|
+
## 1.9.0-next.2
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8408d58: - feat: create copilotkit agui langgraph agent
|
|
8
|
+
- docs: replace remote endpoint with AGUI agent
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- @copilotkit/shared@1.9.0-next.2
|
|
13
|
+
|
|
3
14
|
## 1.8.15-next.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -40,7 +40,7 @@ var require_package = __commonJS({
|
|
|
40
40
|
publishConfig: {
|
|
41
41
|
access: "public"
|
|
42
42
|
},
|
|
43
|
-
version: "1.
|
|
43
|
+
version: "1.9.0-next.2",
|
|
44
44
|
sideEffects: false,
|
|
45
45
|
main: "./dist/index.js",
|
|
46
46
|
module: "./dist/index.mjs",
|
|
@@ -81,6 +81,7 @@ var require_package = __commonJS({
|
|
|
81
81
|
"@ag-ui/client": "0.0.28",
|
|
82
82
|
"@ag-ui/core": "0.0.28",
|
|
83
83
|
"@ag-ui/encoder": "0.0.28",
|
|
84
|
+
"@ag-ui/langgraph": "0.0.3",
|
|
84
85
|
"@ag-ui/proto": "0.0.28",
|
|
85
86
|
"@anthropic-ai/sdk": "^0.27.3",
|
|
86
87
|
"@copilotkit/shared": "workspace:*",
|
|
@@ -5082,6 +5083,7 @@ function copilotRuntimeNodeHttpEndpoint(options) {
|
|
|
5082
5083
|
__name(copilotRuntimeNodeHttpEndpoint, "copilotRuntimeNodeHttpEndpoint");
|
|
5083
5084
|
|
|
5084
5085
|
export {
|
|
5086
|
+
LangGraphEventTypes,
|
|
5085
5087
|
extractParametersFromSchema,
|
|
5086
5088
|
convertMCPToolsToActions,
|
|
5087
5089
|
generateMcpToolInstructions,
|
|
@@ -5099,4 +5101,4 @@ export {
|
|
|
5099
5101
|
getCommonConfig,
|
|
5100
5102
|
copilotRuntimeNodeHttpEndpoint
|
|
5101
5103
|
};
|
|
5102
|
-
//# sourceMappingURL=chunk-
|
|
5104
|
+
//# sourceMappingURL=chunk-6A27R7IP.mjs.map
|