@copilotkit/runtime 1.10.5-next.1 → 1.10.5-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 +7 -0
- package/dist/{chunk-T4NLPBCY.mjs → chunk-AJIPGTPV.mjs} +2 -2
- package/dist/{chunk-C56AVUZI.mjs → chunk-AK5H4K5T.mjs} +2 -2
- package/dist/{chunk-FOXQPOXW.mjs → chunk-G3STE4EL.mjs} +21 -2
- package/dist/chunk-G3STE4EL.mjs.map +1 -0
- package/dist/{chunk-H6QUY5ZQ.mjs → chunk-H5ZYJ27F.mjs} +2 -2
- package/dist/{chunk-CX4GADTM.mjs → chunk-IONJJRU6.mjs} +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +20 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -5
- package/dist/lib/index.d.ts +1 -1
- package/dist/lib/index.js +20 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +5 -5
- package/dist/lib/integrations/index.d.ts +2 -2
- 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.d.ts +1 -1
- 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.d.ts +1 -1
- 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.d.ts +1 -1
- 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/dist/{shared-35015e40.d.ts → shared-0a7346ce.d.ts} +10 -0
- package/package.json +2 -2
- package/src/lib/runtime/agui-action.ts +7 -0
- package/src/lib/runtime/copilot-runtime.ts +25 -0
- package/dist/chunk-FOXQPOXW.mjs.map +0 -1
- /package/dist/{chunk-T4NLPBCY.mjs.map → chunk-AJIPGTPV.mjs.map} +0 -0
- /package/dist/{chunk-C56AVUZI.mjs.map → chunk-AK5H4K5T.mjs.map} +0 -0
- /package/dist/{chunk-H6QUY5ZQ.mjs.map → chunk-H5ZYJ27F.mjs.map} +0 -0
- /package/dist/{chunk-CX4GADTM.mjs.map → chunk-IONJJRU6.mjs.map} +0 -0
package/dist/lib/index.mjs
CHANGED
|
@@ -2,18 +2,18 @@ import {
|
|
|
2
2
|
CustomEventNames,
|
|
3
3
|
LangGraphAgent,
|
|
4
4
|
LangGraphHttpAgent
|
|
5
|
-
} from "../chunk-
|
|
5
|
+
} from "../chunk-H5ZYJ27F.mjs";
|
|
6
6
|
import {
|
|
7
7
|
config,
|
|
8
8
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
9
9
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-IONJJRU6.mjs";
|
|
11
11
|
import {
|
|
12
12
|
copilotRuntimeNestEndpoint
|
|
13
|
-
} from "../chunk-
|
|
13
|
+
} from "../chunk-AJIPGTPV.mjs";
|
|
14
14
|
import {
|
|
15
15
|
copilotRuntimeNodeExpressEndpoint
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-AK5H4K5T.mjs";
|
|
17
17
|
import {
|
|
18
18
|
CopilotRuntime,
|
|
19
19
|
addCustomHeaderPlugin,
|
|
@@ -29,7 +29,7 @@ import {
|
|
|
29
29
|
getCommonConfig,
|
|
30
30
|
langGraphPlatformEndpoint,
|
|
31
31
|
resolveEndpointType
|
|
32
|
-
} from "../chunk-
|
|
32
|
+
} from "../chunk-G3STE4EL.mjs";
|
|
33
33
|
import "../chunk-SHBDMA63.mjs";
|
|
34
34
|
import {
|
|
35
35
|
GoogleGenerativeAIAdapter,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { b as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../shared-
|
|
2
|
-
export { e as CommonConfig, C as CopilotRequestContextProperties, a as addCustomHeaderPlugin, d as buildSchema, c as createContext, g as getCommonConfig } from '../../shared-
|
|
1
|
+
import { b as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../shared-0a7346ce.js';
|
|
2
|
+
export { e as CommonConfig, C as CopilotRequestContextProperties, a as addCustomHeaderPlugin, d as buildSchema, c as createContext, g as getCommonConfig } from '../../shared-0a7346ce.js';
|
|
3
3
|
import * as graphql_yoga from 'graphql-yoga';
|
|
4
4
|
import { YogaServerInstance } from 'graphql-yoga';
|
|
5
5
|
export { copilotRuntimeNodeHttpEndpoint } from './node-http/index.js';
|