@copilotkit/runtime 1.9.2-next.22 → 1.9.2-next.23
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 +12 -0
- package/dist/{chunk-YSRDTT3V.mjs → chunk-C6PCDSTD.mjs} +2 -2
- package/dist/{chunk-WLLDTXG6.mjs → chunk-FIA5HRU2.mjs} +57 -18
- package/dist/chunk-FIA5HRU2.mjs.map +1 -0
- package/dist/{chunk-UOSL5GYI.mjs → chunk-HZW6X63M.mjs} +2 -2
- package/dist/{chunk-MQNSNCJU.mjs → chunk-LYXJJDV3.mjs} +2 -2
- package/dist/{chunk-Z2HSWVJ6.mjs → chunk-ZQUGWRVU.mjs} +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +56 -17
- 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 +56 -17
- 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-41d4988d.d.ts → shared-6b6dbf8b.d.ts} +1 -3
- package/package.json +2 -2
- package/src/lib/runtime/__tests__/mcp-tools-utils.test.ts +464 -0
- package/src/lib/runtime/copilot-runtime.ts +1 -3
- package/src/lib/runtime/mcp-tools-utils.ts +84 -18
- package/dist/chunk-WLLDTXG6.mjs.map +0 -1
- /package/dist/{chunk-YSRDTT3V.mjs.map → chunk-C6PCDSTD.mjs.map} +0 -0
- /package/dist/{chunk-UOSL5GYI.mjs.map → chunk-HZW6X63M.mjs.map} +0 -0
- /package/dist/{chunk-MQNSNCJU.mjs.map → chunk-LYXJJDV3.mjs.map} +0 -0
- /package/dist/{chunk-Z2HSWVJ6.mjs.map → chunk-ZQUGWRVU.mjs.map} +0 -0
|
@@ -2,20 +2,20 @@ import {
|
|
|
2
2
|
config,
|
|
3
3
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
4
4
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-HZW6X63M.mjs";
|
|
6
6
|
import {
|
|
7
7
|
copilotRuntimeNestEndpoint
|
|
8
|
-
} from "../../chunk-
|
|
8
|
+
} from "../../chunk-LYXJJDV3.mjs";
|
|
9
9
|
import {
|
|
10
10
|
copilotRuntimeNodeExpressEndpoint
|
|
11
|
-
} from "../../chunk-
|
|
11
|
+
} from "../../chunk-ZQUGWRVU.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-FIA5HRU2.mjs";
|
|
19
19
|
import "../../chunk-SHBDMA63.mjs";
|
|
20
20
|
import "../../chunk-QLLV2QVK.mjs";
|
|
21
21
|
import "../../chunk-XWBDEXDA.mjs";
|
|
@@ -1,5 +1,5 @@
|
|
|
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-6b6dbf8b.js';
|
|
3
3
|
import 'graphql';
|
|
4
4
|
import 'pino';
|
|
5
5
|
import '@copilotkit/shared';
|