@copilotkit/runtime 1.9.3-next.1 → 1.9.3-next.3
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 +16 -0
- package/README.md +18 -0
- package/dist/{chunk-A4G3Y5MI.mjs → chunk-JU4BWL22.mjs} +2 -2
- package/dist/{chunk-S5KSXMT3.mjs → chunk-L3G4PP6B.mjs} +2 -2
- package/dist/{chunk-6YYEJGX2.mjs → chunk-LU6X2UVD.mjs} +2 -2
- package/dist/{chunk-6YYEJGX2.mjs.map → chunk-LU6X2UVD.mjs.map} +1 -1
- package/dist/{chunk-RYQAU5RR.mjs → chunk-PVBUOB6U.mjs} +2 -2
- package/dist/{chunk-BNIZSVJS.mjs → chunk-WEDJ5Q4R.mjs} +4 -3
- package/dist/chunk-WEDJ5Q4R.mjs.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -6
- package/dist/index.mjs.map +1 -1
- package/dist/lib/index.d.ts +1 -0
- package/dist/lib/index.js +3 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +8 -6
- package/dist/lib/integrations/index.js +1 -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 +1 -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 +1 -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 +1 -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 +4 -4
- package/src/lib/runtime/langgraph/langgraph-agent.ts +3 -0
- package/dist/chunk-BNIZSVJS.mjs.map +0 -1
- /package/dist/{chunk-A4G3Y5MI.mjs.map → chunk-JU4BWL22.mjs.map} +0 -0
- /package/dist/{chunk-S5KSXMT3.mjs.map → chunk-L3G4PP6B.mjs.map} +0 -0
- /package/dist/{chunk-RYQAU5RR.mjs.map → chunk-PVBUOB6U.mjs.map} +0 -0
package/dist/lib/index.mjs
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
CustomEventNames,
|
|
3
|
-
LangGraphAgent
|
|
4
|
-
|
|
3
|
+
LangGraphAgent,
|
|
4
|
+
LangGraphHttpAgent
|
|
5
|
+
} from "../chunk-WEDJ5Q4R.mjs";
|
|
5
6
|
import {
|
|
6
7
|
config,
|
|
7
8
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
8
9
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
9
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-JU4BWL22.mjs";
|
|
10
11
|
import {
|
|
11
12
|
copilotRuntimeNestEndpoint
|
|
12
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-L3G4PP6B.mjs";
|
|
13
14
|
import {
|
|
14
15
|
copilotRuntimeNodeExpressEndpoint
|
|
15
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-PVBUOB6U.mjs";
|
|
16
17
|
import {
|
|
17
18
|
CopilotRuntime,
|
|
18
19
|
addCustomHeaderPlugin,
|
|
@@ -28,7 +29,7 @@ import {
|
|
|
28
29
|
getCommonConfig,
|
|
29
30
|
langGraphPlatformEndpoint,
|
|
30
31
|
resolveEndpointType
|
|
31
|
-
} from "../chunk-
|
|
32
|
+
} from "../chunk-LU6X2UVD.mjs";
|
|
32
33
|
import "../chunk-SHBDMA63.mjs";
|
|
33
34
|
import {
|
|
34
35
|
GoogleGenerativeAIAdapter,
|
|
@@ -49,6 +50,7 @@ export {
|
|
|
49
50
|
GroqAdapter,
|
|
50
51
|
LangChainAdapter,
|
|
51
52
|
LangGraphAgent,
|
|
53
|
+
LangGraphHttpAgent,
|
|
52
54
|
OpenAIAdapter,
|
|
53
55
|
OpenAIAssistantAdapter,
|
|
54
56
|
UnifyAdapter,
|