@copilotkit/runtime 1.8.5-next.1 → 1.8.5-next.3
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 +13 -0
- package/dist/{chunk-EH5E2IX3.mjs → chunk-2PVUPC44.mjs} +2 -2
- package/dist/{chunk-FZJAYGIR.mjs → chunk-DNI7KA7Y.mjs} +2 -2
- package/dist/chunk-Q6JA6YY3.mjs +1 -0
- package/dist/{chunk-CFWU64MY.mjs → chunk-TDPCQIMB.mjs} +2 -2
- package/dist/{chunk-AQHJGUTA.mjs → chunk-UOCZJTXN.mjs} +2 -2
- package/dist/{chunk-KH52RHVR.mjs → chunk-UTUGZIQI.mjs} +165 -10
- package/dist/chunk-UTUGZIQI.mjs.map +1 -0
- package/dist/index.d.ts +8 -8
- package/dist/index.js +2882 -2719
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -6
- package/dist/index.mjs.map +1 -1
- package/dist/lib/index.d.ts +7 -7
- package/dist/lib/index.js +3876 -3713
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +10 -6
- package/dist/lib/integrations/index.d.ts +4 -4
- 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 +3 -3
- 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 +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.d.ts +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/dist/service-adapters/index.mjs +1 -1
- package/dist/{copilot-runtime-9347bd66.d.ts → shared-86ec42e7.d.ts} +130 -45
- package/package.json +2 -2
- package/src/lib/index.ts +2 -1
- package/src/lib/runtime/copilot-runtime.ts +218 -11
- package/src/lib/runtime/mcp-tools-utils.ts +117 -0
- package/dist/chunk-KH52RHVR.mjs.map +0 -1
- package/dist/chunk-PTC5JN3P.mjs +0 -1
- /package/dist/{chunk-EH5E2IX3.mjs.map → chunk-2PVUPC44.mjs.map} +0 -0
- /package/dist/{chunk-FZJAYGIR.mjs.map → chunk-DNI7KA7Y.mjs.map} +0 -0
- /package/dist/{chunk-PTC5JN3P.mjs.map → chunk-Q6JA6YY3.mjs.map} +0 -0
- /package/dist/{chunk-CFWU64MY.mjs.map → chunk-TDPCQIMB.mjs.map} +0 -0
- /package/dist/{chunk-AQHJGUTA.mjs.map → chunk-UOCZJTXN.mjs.map} +0 -0
|
@@ -2,21 +2,21 @@ import {
|
|
|
2
2
|
config,
|
|
3
3
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
4
4
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
5
|
-
} from "../../chunk-
|
|
5
|
+
} from "../../chunk-UOCZJTXN.mjs";
|
|
6
6
|
import {
|
|
7
7
|
copilotRuntimeNestEndpoint
|
|
8
|
-
} from "../../chunk-
|
|
8
|
+
} from "../../chunk-TDPCQIMB.mjs";
|
|
9
9
|
import {
|
|
10
10
|
copilotRuntimeNodeExpressEndpoint
|
|
11
|
-
} from "../../chunk-
|
|
11
|
+
} from "../../chunk-2PVUPC44.mjs";
|
|
12
12
|
import {
|
|
13
13
|
addCustomHeaderPlugin,
|
|
14
14
|
buildSchema,
|
|
15
15
|
copilotRuntimeNodeHttpEndpoint,
|
|
16
16
|
createContext,
|
|
17
17
|
getCommonConfig
|
|
18
|
-
} from "../../chunk-
|
|
19
|
-
import "../../chunk-
|
|
18
|
+
} from "../../chunk-UTUGZIQI.mjs";
|
|
19
|
+
import "../../chunk-DNI7KA7Y.mjs";
|
|
20
20
|
import "../../chunk-5BIEM2UU.mjs";
|
|
21
21
|
import "../../chunk-RTFJTJMA.mjs";
|
|
22
22
|
import "../../chunk-2OZAGFV3.mjs";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as graphql_yoga from 'graphql-yoga';
|
|
2
|
-
import {
|
|
2
|
+
import { b as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../../shared-86ec42e7.js';
|
|
3
|
+
import 'graphql';
|
|
4
|
+
import 'pino';
|
|
3
5
|
import '@copilotkit/shared';
|
|
4
6
|
import '../../../langserve-6f7af8d3.js';
|
|
5
7
|
import '../../../index-5bec5424.js';
|
|
6
8
|
import '../../../graphql/types/base/index.js';
|
|
7
9
|
import 'rxjs';
|
|
8
|
-
import 'graphql';
|
|
9
|
-
import 'pino';
|
|
10
10
|
import '../../cloud/index.js';
|
|
11
11
|
|
|
12
12
|
declare function copilotRuntimeNestEndpoint(options: CreateCopilotRuntimeServerOptions): graphql_yoga.YogaServerInstance<{}, Partial<GraphQLContext>>;
|