@copilotkit/runtime 1.9.2-next.24 → 1.9.2-next.25
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 +9 -0
- package/dist/{chunk-FR4C3TPU.mjs → chunk-3JXN25PL.mjs} +2 -2
- package/dist/{chunk-ECQRTXJX.mjs → chunk-BNLL5CH2.mjs} +2 -2
- package/dist/{chunk-S2YGYQDH.mjs → chunk-DOXGUQKL.mjs} +2 -2
- package/dist/{chunk-TBVA4IGX.mjs → chunk-GJWXNXSA.mjs} +2 -2
- package/dist/{chunk-GAUZHH2X.mjs → chunk-YKYBGYYL.mjs} +79 -33
- package/dist/chunk-YKYBGYYL.mjs.map +1 -0
- package/dist/{groq-adapter-098f97f6.d.ts → groq-adapter-742818f2.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +71 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/{langserve-fc5cac89.d.ts → langserve-3e8d0e06.d.ts} +6 -0
- package/dist/lib/index.d.ts +3 -3
- package/dist/lib/index.js +71 -25
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +6 -6
- package/dist/lib/integrations/index.d.ts +3 -3
- 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.d.ts +2 -2
- 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.d.ts +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 +3 -3
- package/dist/lib/integrations/node-http/index.d.ts +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 +2 -2
- package/dist/service-adapters/index.d.ts +4 -4
- package/dist/{shared-6b6dbf8b.d.ts → shared-96b46379.d.ts} +1 -1
- package/package.json +2 -2
- package/src/lib/runtime/copilot-runtime.ts +32 -19
- package/src/service-adapters/events.ts +40 -1
- package/dist/chunk-GAUZHH2X.mjs.map +0 -1
- /package/dist/{chunk-FR4C3TPU.mjs.map → chunk-3JXN25PL.mjs.map} +0 -0
- /package/dist/{chunk-ECQRTXJX.mjs.map → chunk-BNLL5CH2.mjs.map} +0 -0
- /package/dist/{chunk-S2YGYQDH.mjs.map → chunk-DOXGUQKL.mjs.map} +0 -0
- /package/dist/{chunk-TBVA4IGX.mjs.map → chunk-GJWXNXSA.mjs.map} +0 -0
|
@@ -2,24 +2,24 @@ import {
|
|
|
2
2
|
config,
|
|
3
3
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
4
4
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-GJWXNXSA.mjs";
|
|
6
6
|
import {
|
|
7
7
|
copilotRuntimeNestEndpoint
|
|
8
|
-
} from "../../chunk-
|
|
8
|
+
} from "../../chunk-BNLL5CH2.mjs";
|
|
9
9
|
import {
|
|
10
10
|
copilotRuntimeNodeExpressEndpoint
|
|
11
|
-
} from "../../chunk-
|
|
11
|
+
} from "../../chunk-3JXN25PL.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addCustomHeaderPlugin,
|
|
14
14
|
buildSchema,
|
|
15
15
|
copilotRuntimeNodeHttpEndpoint,
|
|
16
16
|
createContext,
|
|
17
17
|
getCommonConfig
|
|
18
|
-
} from "../../chunk-
|
|
18
|
+
} from "../../chunk-YKYBGYYL.mjs";
|
|
19
|
+
import "../../chunk-SHBDMA63.mjs";
|
|
19
20
|
import "../../chunk-QLLV2QVK.mjs";
|
|
20
21
|
import "../../chunk-XWBDEXDA.mjs";
|
|
21
22
|
import "../../chunk-AMUJQ6IR.mjs";
|
|
22
|
-
import "../../chunk-SHBDMA63.mjs";
|
|
23
23
|
import "../../chunk-2OZAGFV3.mjs";
|
|
24
24
|
import "../../chunk-FHD4JECV.mjs";
|
|
25
25
|
export {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as graphql_yoga from 'graphql-yoga';
|
|
2
|
-
import { b as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../../shared-
|
|
2
|
+
import { b as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../../shared-96b46379.js';
|
|
3
3
|
import 'graphql';
|
|
4
4
|
import 'pino';
|
|
5
5
|
import '@copilotkit/shared';
|
|
6
|
-
import '../../../langserve-
|
|
6
|
+
import '../../../langserve-3e8d0e06.js';
|
|
7
7
|
import '../../../index-d4614f9b.js';
|
|
8
8
|
import '../../../graphql/types/base/index.js';
|
|
9
9
|
import 'rxjs';
|