@copilotkit/runtime 1.9.2-next.6 → 1.9.2-next.8
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 +14 -0
- package/dist/{chunk-K4JQLKXK.mjs → chunk-4TLMVLU4.mjs} +2 -2
- package/dist/{chunk-6FLO2QTT.mjs → chunk-5SG4WWXH.mjs} +19 -2
- package/dist/chunk-5SG4WWXH.mjs.map +1 -0
- package/dist/{chunk-6AD7VT26.mjs → chunk-JWPSIGSA.mjs} +2 -2
- package/dist/{chunk-JZWHLURE.mjs → chunk-KYCDL2KX.mjs} +2 -2
- package/dist/{chunk-RCIYK6YJ.mjs → chunk-WIXS6EG7.mjs} +47 -38
- package/dist/chunk-WIXS6EG7.mjs.map +1 -0
- package/dist/index.js +58 -32
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -10
- package/dist/lib/index.d.ts +2 -1
- package/dist/lib/index.js +58 -32
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +6 -6
- package/dist/lib/integrations/index.js +1 -1
- package/dist/lib/integrations/index.js.map +1 -1
- package/dist/lib/integrations/index.mjs +5 -5
- 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 +3 -3
- 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 +3 -3
- 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 +2 -2
- package/package.json +2 -2
- package/src/lib/runtime/langgraph/langgraph-agent.ts +12 -0
- package/src/lib/runtime/remote-lg-action.ts +45 -37
- package/dist/chunk-6FLO2QTT.mjs.map +0 -1
- package/dist/chunk-RCIYK6YJ.mjs.map +0 -1
- /package/dist/{chunk-K4JQLKXK.mjs.map → chunk-4TLMVLU4.mjs.map} +0 -0
- /package/dist/{chunk-6AD7VT26.mjs.map → chunk-JWPSIGSA.mjs.map} +0 -0
- /package/dist/{chunk-JZWHLURE.mjs.map → chunk-KYCDL2KX.mjs.map} +0 -0
package/dist/lib/index.mjs
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import {
|
|
2
2
|
CustomEventNames,
|
|
3
3
|
LangGraphAgent
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-5SG4WWXH.mjs";
|
|
5
5
|
import {
|
|
6
6
|
config,
|
|
7
7
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
8
8
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-JWPSIGSA.mjs";
|
|
10
10
|
import {
|
|
11
11
|
copilotRuntimeNestEndpoint
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-4TLMVLU4.mjs";
|
|
13
13
|
import {
|
|
14
14
|
copilotRuntimeNodeExpressEndpoint
|
|
15
|
-
} from "../chunk-
|
|
15
|
+
} from "../chunk-KYCDL2KX.mjs";
|
|
16
16
|
import {
|
|
17
17
|
CopilotRuntime,
|
|
18
18
|
addCustomHeaderPlugin,
|
|
@@ -28,8 +28,7 @@ import {
|
|
|
28
28
|
getCommonConfig,
|
|
29
29
|
langGraphPlatformEndpoint,
|
|
30
30
|
resolveEndpointType
|
|
31
|
-
} from "../chunk-
|
|
32
|
-
import "../chunk-5BIEM2UU.mjs";
|
|
31
|
+
} from "../chunk-WIXS6EG7.mjs";
|
|
33
32
|
import {
|
|
34
33
|
GoogleGenerativeAIAdapter,
|
|
35
34
|
GroqAdapter,
|
|
@@ -38,6 +37,7 @@ import {
|
|
|
38
37
|
OpenAIAssistantAdapter,
|
|
39
38
|
UnifyAdapter
|
|
40
39
|
} from "../chunk-IIXJVVTV.mjs";
|
|
40
|
+
import "../chunk-5BIEM2UU.mjs";
|
|
41
41
|
import "../chunk-SHBDMA63.mjs";
|
|
42
42
|
import "../chunk-2OZAGFV3.mjs";
|
|
43
43
|
import "../chunk-FHD4JECV.mjs";
|