@copilotkit/runtime 1.8.9-next.0 → 1.8.10-next.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 +16 -0
- package/__snapshots__/schema/schema.graphql +1 -1
- package/dist/{chunk-LFB4PE32.mjs → chunk-2ICQTCH3.mjs} +34 -17
- package/dist/chunk-2ICQTCH3.mjs.map +1 -0
- package/dist/{chunk-TPDMN2N7.mjs → chunk-F2DLMRBK.mjs} +2 -2
- package/dist/{chunk-HEKLYCFM.mjs → chunk-MSBLW6TU.mjs} +2 -2
- package/dist/{chunk-AFJ3VQB4.mjs → chunk-PRF2YJTA.mjs} +2 -2
- package/dist/{groq-adapter-53d3fa48.d.ts → groq-adapter-4848f8e8.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +33 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{langserve-c9a20fe9.d.ts → langserve-4a5c9217.d.ts} +1 -1
- package/dist/lib/index.d.ts +3 -3
- package/dist/lib/index.js +33 -16
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +4 -4
- package/dist/lib/integrations/index.d.ts +3 -3
- package/dist/lib/integrations/index.js +3 -3
- 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 +2 -2
- package/dist/lib/integrations/nest/index.js +3 -3
- 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 +2 -2
- package/dist/lib/integrations/node-express/index.js +3 -3
- 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 +2 -2
- package/dist/lib/integrations/node-http/index.js +3 -3
- package/dist/lib/integrations/node-http/index.js.map +1 -1
- package/dist/lib/integrations/node-http/index.mjs +1 -1
- package/dist/service-adapters/index.d.ts +3 -3
- package/dist/{shared-df478d34.d.ts → shared-a7b30781.d.ts} +1 -1
- package/package.json +2 -2
- package/src/graphql/inputs/agent-state.input.ts +1 -1
- package/src/lib/runtime/remote-action-constructors.ts +6 -6
- package/src/lib/runtime/remote-lg-action.ts +39 -7
- package/dist/chunk-LFB4PE32.mjs.map +0 -1
- /package/dist/{chunk-TPDMN2N7.mjs.map → chunk-F2DLMRBK.mjs.map} +0 -0
- /package/dist/{chunk-HEKLYCFM.mjs.map → chunk-MSBLW6TU.mjs.map} +0 -0
- /package/dist/{chunk-AFJ3VQB4.mjs.map → chunk-PRF2YJTA.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-MSBLW6TU.mjs";
|
|
7
7
|
import {
|
|
8
8
|
copilotRuntimeNestEndpoint
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-F2DLMRBK.mjs";
|
|
10
10
|
import {
|
|
11
11
|
copilotRuntimeNodeExpressEndpoint
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-PRF2YJTA.mjs";
|
|
13
13
|
import {
|
|
14
14
|
CopilotRuntime,
|
|
15
15
|
addCustomHeaderPlugin,
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
getCommonConfig,
|
|
26
26
|
langGraphPlatformEndpoint,
|
|
27
27
|
resolveEndpointType
|
|
28
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-2ICQTCH3.mjs";
|
|
29
29
|
import {
|
|
30
30
|
GoogleGenerativeAIAdapter,
|
|
31
31
|
GroqAdapter,
|
|
@@ -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-a7b30781.js';
|
|
2
|
+
export { e as CommonConfig, C as CopilotRequestContextProperties, a as addCustomHeaderPlugin, d as buildSchema, c as createContext, g as getCommonConfig } from '../../shared-a7b30781.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';
|
|
@@ -8,7 +8,7 @@ export { copilotRuntimeNestEndpoint } from './nest/index.js';
|
|
|
8
8
|
import 'graphql';
|
|
9
9
|
import 'pino';
|
|
10
10
|
import '@copilotkit/shared';
|
|
11
|
-
import '../../langserve-
|
|
11
|
+
import '../../langserve-4a5c9217.js';
|
|
12
12
|
import '../../index-d4614f9b.js';
|
|
13
13
|
import '../../graphql/types/base/index.js';
|
|
14
14
|
import 'rxjs';
|
|
@@ -44,7 +44,7 @@ var require_package = __commonJS({
|
|
|
44
44
|
publishConfig: {
|
|
45
45
|
access: "public"
|
|
46
46
|
},
|
|
47
|
-
version: "1.8.
|
|
47
|
+
version: "1.8.10-next.0",
|
|
48
48
|
sideEffects: false,
|
|
49
49
|
main: "./dist/index.js",
|
|
50
50
|
module: "./dist/index.mjs",
|
|
@@ -761,7 +761,7 @@ __name(_ts_metadata9, "_ts_metadata");
|
|
|
761
761
|
var AgentStateInput = class {
|
|
762
762
|
agentName;
|
|
763
763
|
state;
|
|
764
|
-
|
|
764
|
+
config;
|
|
765
765
|
};
|
|
766
766
|
__name(AgentStateInput, "AgentStateInput");
|
|
767
767
|
_ts_decorate9([
|
|
@@ -777,7 +777,7 @@ _ts_decorate9([
|
|
|
777
777
|
nullable: true
|
|
778
778
|
}),
|
|
779
779
|
_ts_metadata9("design:type", String)
|
|
780
|
-
], AgentStateInput.prototype, "
|
|
780
|
+
], AgentStateInput.prototype, "config", void 0);
|
|
781
781
|
AgentStateInput = _ts_decorate9([
|
|
782
782
|
(0, import_type_graphql10.InputType)()
|
|
783
783
|
], AgentStateInput);
|