@copilotkit/runtime 1.5.0 → 1.5.1-custom-tag-pre.0
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/__snapshots__/schema/schema.graphql +1 -0
- package/dist/{chunk-25G6SHWM.mjs → chunk-3ECBC2K2.mjs} +13 -6
- package/dist/chunk-3ECBC2K2.mjs.map +1 -0
- package/dist/{chunk-PIUHAIBR.mjs → chunk-5E6LOP76.mjs} +2 -2
- package/dist/{chunk-4AYRDPWK.mjs → chunk-CLGKEUOA.mjs} +14 -1
- package/dist/chunk-CLGKEUOA.mjs.map +1 -0
- package/dist/{chunk-AFKLCW76.mjs → chunk-MKDG5ZHT.mjs} +2 -2
- package/dist/{chunk-D6J2N5ZQ.mjs → chunk-MYZB2EKG.mjs} +2 -2
- package/dist/{copilot-runtime-2e46a7b6.d.ts → copilot-runtime-6285d897.d.ts} +1 -1
- package/dist/{groq-adapter-7bf6824b.d.ts → groq-adapter-15d41154.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +21 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -10
- package/dist/{langserve-f318db89.d.ts → langserve-48e976ac.d.ts} +1 -0
- package/dist/lib/index.d.ts +3 -3
- package/dist/lib/index.js +18 -1
- 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 +8 -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 +8 -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 +8 -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 +8 -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 +3 -3
- package/dist/service-adapters/index.js +13 -0
- package/dist/service-adapters/index.js.map +1 -1
- package/dist/service-adapters/index.mjs +1 -1
- package/package.json +2 -2
- package/src/graphql/inputs/forwarded-parameters.input.ts +3 -0
- package/src/service-adapters/anthropic/anthropic-adapter.ts +1 -0
- package/src/service-adapters/groq/groq-adapter.ts +1 -0
- package/src/service-adapters/openai/openai-adapter.ts +1 -0
- package/src/service-adapters/unify/unify-adapter.ts +2 -0
- package/dist/chunk-25G6SHWM.mjs.map +0 -1
- package/dist/chunk-4AYRDPWK.mjs.map +0 -1
- /package/dist/{chunk-PIUHAIBR.mjs.map → chunk-5E6LOP76.mjs.map} +0 -0
- /package/dist/{chunk-AFKLCW76.mjs.map → chunk-MKDG5ZHT.mjs.map} +0 -0
- /package/dist/{chunk-D6J2N5ZQ.mjs.map → chunk-MYZB2EKG.mjs.map} +0 -0
package/dist/lib/index.mjs
CHANGED
|
@@ -3,13 +3,13 @@ import {
|
|
|
3
3
|
config,
|
|
4
4
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
5
5
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-MKDG5ZHT.mjs";
|
|
7
7
|
import {
|
|
8
8
|
copilotRuntimeNestEndpoint
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-5E6LOP76.mjs";
|
|
10
10
|
import {
|
|
11
11
|
copilotRuntimeNodeExpressEndpoint
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-MYZB2EKG.mjs";
|
|
13
13
|
import {
|
|
14
14
|
CopilotRuntime,
|
|
15
15
|
buildSchema,
|
|
@@ -20,8 +20,7 @@ import {
|
|
|
20
20
|
getCommonConfig,
|
|
21
21
|
langGraphPlatformEndpoint,
|
|
22
22
|
resolveEndpointType
|
|
23
|
-
} from "../chunk-
|
|
24
|
-
import "../chunk-U3V2BCGI.mjs";
|
|
23
|
+
} from "../chunk-3ECBC2K2.mjs";
|
|
25
24
|
import {
|
|
26
25
|
GoogleGenerativeAIAdapter,
|
|
27
26
|
GroqAdapter,
|
|
@@ -29,7 +28,8 @@ import {
|
|
|
29
28
|
OpenAIAdapter,
|
|
30
29
|
OpenAIAssistantAdapter,
|
|
31
30
|
UnifyAdapter
|
|
32
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-CLGKEUOA.mjs";
|
|
32
|
+
import "../chunk-U3V2BCGI.mjs";
|
|
33
33
|
import "../chunk-RFF5IIZJ.mjs";
|
|
34
34
|
import "../chunk-D2WLFQS6.mjs";
|
|
35
35
|
import "../chunk-44O2JGUY.mjs";
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { d as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../copilot-runtime-
|
|
2
|
-
export { h as CommonConfig, b as CopilotRequestContextProperties, g as buildSchema, e as createContext, i as getCommonConfig } from '../../copilot-runtime-
|
|
1
|
+
import { d as CreateCopilotRuntimeServerOptions, G as GraphQLContext } from '../../copilot-runtime-6285d897.js';
|
|
2
|
+
export { h as CommonConfig, b as CopilotRequestContextProperties, g as buildSchema, e as createContext, i as getCommonConfig } from '../../copilot-runtime-6285d897.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';
|
|
6
6
|
export { copilotRuntimeNodeExpressEndpoint } from './node-express/index.js';
|
|
7
7
|
export { copilotRuntimeNestEndpoint } from './nest/index.js';
|
|
8
8
|
import '@copilotkit/shared';
|
|
9
|
-
import '../../langserve-
|
|
9
|
+
import '../../langserve-48e976ac.js';
|
|
10
10
|
import '../../index-ff3fbc33.js';
|
|
11
11
|
import '../../graphql/types/base/index.js';
|
|
12
12
|
import 'rxjs';
|
|
@@ -44,7 +44,7 @@ var require_package = __commonJS({
|
|
|
44
44
|
publishConfig: {
|
|
45
45
|
access: "public"
|
|
46
46
|
},
|
|
47
|
-
version: "1.5.0",
|
|
47
|
+
version: "1.5.1-custom-tag-pre.0",
|
|
48
48
|
sideEffects: false,
|
|
49
49
|
main: "./dist/index.js",
|
|
50
50
|
module: "./dist/index.mjs",
|
|
@@ -609,6 +609,7 @@ var ForwardedParametersInput = class {
|
|
|
609
609
|
stop;
|
|
610
610
|
toolChoice;
|
|
611
611
|
toolChoiceFunctionName;
|
|
612
|
+
temperature;
|
|
612
613
|
};
|
|
613
614
|
__name(ForwardedParametersInput, "ForwardedParametersInput");
|
|
614
615
|
_ts_decorate7([
|
|
@@ -643,6 +644,12 @@ _ts_decorate7([
|
|
|
643
644
|
}),
|
|
644
645
|
_ts_metadata7("design:type", String)
|
|
645
646
|
], ForwardedParametersInput.prototype, "toolChoiceFunctionName", void 0);
|
|
647
|
+
_ts_decorate7([
|
|
648
|
+
(0, import_type_graphql8.Field)(() => Number, {
|
|
649
|
+
nullable: true
|
|
650
|
+
}),
|
|
651
|
+
_ts_metadata7("design:type", Number)
|
|
652
|
+
], ForwardedParametersInput.prototype, "temperature", void 0);
|
|
646
653
|
ForwardedParametersInput = _ts_decorate7([
|
|
647
654
|
(0, import_type_graphql8.InputType)()
|
|
648
655
|
], ForwardedParametersInput);
|