@copilotkit/runtime 1.5.12-next.7 → 1.5.12
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 +15 -0
- package/dist/{chunk-WTUPF3W3.mjs → chunk-4LRVKGBI.mjs} +2 -2
- package/dist/{chunk-DLESGNLO.mjs → chunk-IS3QAGOU.mjs} +2 -2
- package/dist/{chunk-34276UUU.mjs → chunk-PFELVFS7.mjs} +7 -7
- package/dist/chunk-PFELVFS7.mjs.map +1 -0
- package/dist/{chunk-UBYSQI43.mjs → chunk-W6EE6OTN.mjs} +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -9
- package/dist/lib/index.js +1 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +5 -5
- 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/copilot-runtime.ts +3 -0
- package/dist/chunk-34276UUU.mjs.map +0 -1
- /package/dist/{chunk-WTUPF3W3.mjs.map → chunk-4LRVKGBI.mjs.map} +0 -0
- /package/dist/{chunk-DLESGNLO.mjs.map → chunk-IS3QAGOU.mjs.map} +0 -0
- /package/dist/{chunk-UBYSQI43.mjs.map → chunk-W6EE6OTN.mjs.map} +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
copilotRuntimeNodeHttpEndpoint
|
|
3
|
-
} from "../../../chunk-
|
|
4
|
-
import "../../../chunk-S3KKBII4.mjs";
|
|
3
|
+
} from "../../../chunk-PFELVFS7.mjs";
|
|
5
4
|
import "../../../chunk-U3V2BCGI.mjs";
|
|
5
|
+
import "../../../chunk-S3KKBII4.mjs";
|
|
6
6
|
import "../../../chunk-HNUNXFTW.mjs";
|
|
7
7
|
import "../../../chunk-D2WLFQS6.mjs";
|
|
8
8
|
import "../../../chunk-44O2JGUY.mjs";
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"version": "1.5.12
|
|
12
|
+
"version": "1.5.12",
|
|
13
13
|
"sideEffects": false,
|
|
14
14
|
"main": "./dist/index.js",
|
|
15
15
|
"module": "./dist/index.mjs",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"rxjs": "^7.8.1",
|
|
59
59
|
"type-graphql": "2.0.0-rc.1",
|
|
60
60
|
"zod": "^3.23.3",
|
|
61
|
-
"@copilotkit/shared": "1.5.12
|
|
61
|
+
"@copilotkit/shared": "1.5.12"
|
|
62
62
|
},
|
|
63
63
|
"keywords": [
|
|
64
64
|
"copilotkit",
|
|
@@ -30,12 +30,14 @@ import {
|
|
|
30
30
|
RemoteChain,
|
|
31
31
|
RemoteChainParameters,
|
|
32
32
|
} from "../../service-adapters";
|
|
33
|
+
|
|
33
34
|
import { MessageInput } from "../../graphql/inputs/message.input";
|
|
34
35
|
import { ActionInput } from "../../graphql/inputs/action.input";
|
|
35
36
|
import { RuntimeEventSource } from "../../service-adapters/events";
|
|
36
37
|
import { convertGqlInputToMessages } from "../../service-adapters/conversion";
|
|
37
38
|
import { Message } from "../../graphql/types/converted";
|
|
38
39
|
import { ForwardedParametersInput } from "../../graphql/inputs/forwarded-parameters.input";
|
|
40
|
+
|
|
39
41
|
import {
|
|
40
42
|
isLangGraphAgentAction,
|
|
41
43
|
LangGraphAgentAction,
|
|
@@ -45,6 +47,7 @@ import {
|
|
|
45
47
|
CopilotKitEndpoint,
|
|
46
48
|
LangGraphPlatformEndpoint,
|
|
47
49
|
} from "./remote-actions";
|
|
50
|
+
|
|
48
51
|
import { GraphQLContext } from "../integrations/shared";
|
|
49
52
|
import { AgentSessionInput } from "../../graphql/inputs/agent-session.input";
|
|
50
53
|
import { from } from "rxjs";
|