@copilotkit/runtime 1.10.0-next.6 → 1.10.0-next.8
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-5UCKTDUR.mjs → chunk-5T75KY3E.mjs} +2 -2
- package/dist/{chunk-NE5XONJ5.mjs → chunk-6QPAMPDT.mjs} +8 -8
- package/dist/{chunk-NE5XONJ5.mjs.map → chunk-6QPAMPDT.mjs.map} +1 -1
- package/dist/{chunk-RZHXGTUZ.mjs → chunk-F7IANE7Z.mjs} +65 -5
- package/dist/chunk-F7IANE7Z.mjs.map +1 -0
- package/dist/{chunk-6K5MA7C2.mjs → chunk-QHHLM3PY.mjs} +2 -2
- package/dist/{chunk-S73GSB6E.mjs → chunk-TCZ4SLBS.mjs} +2 -2
- package/dist/{chunk-L3IUQRK2.mjs → chunk-ZER62NUN.mjs} +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +66 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/lib/index.js +2 -2
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +7 -7
- package/dist/lib/integrations/index.js +2 -2
- package/dist/lib/integrations/index.js.map +1 -1
- package/dist/lib/integrations/index.mjs +5 -5
- package/dist/lib/integrations/nest/index.js +2 -2
- 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.js +2 -2
- 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.js +2 -2
- 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 +32 -2
- package/dist/service-adapters/index.js +64 -4
- package/dist/service-adapters/index.js.map +1 -1
- package/dist/service-adapters/index.mjs +1 -1
- package/package.json +3 -3
- package/src/service-adapters/anthropic/anthropic-adapter.ts +106 -5
- package/src/service-adapters/anthropic/utils.ts +1 -1
- package/dist/chunk-RZHXGTUZ.mjs.map +0 -1
- /package/dist/{chunk-5UCKTDUR.mjs.map → chunk-5T75KY3E.mjs.map} +0 -0
- /package/dist/{chunk-6K5MA7C2.mjs.map → chunk-QHHLM3PY.mjs.map} +0 -0
- /package/dist/{chunk-S73GSB6E.mjs.map → chunk-TCZ4SLBS.mjs.map} +0 -0
- /package/dist/{chunk-L3IUQRK2.mjs.map → chunk-ZER62NUN.mjs.map} +0 -0
package/dist/index.mjs
CHANGED
|
@@ -2,18 +2,18 @@ import {
|
|
|
2
2
|
CustomEventNames,
|
|
3
3
|
LangGraphAgent,
|
|
4
4
|
LangGraphHttpAgent
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-5T75KY3E.mjs";
|
|
6
6
|
import {
|
|
7
7
|
config,
|
|
8
8
|
copilotRuntimeNextJSAppRouterEndpoint,
|
|
9
9
|
copilotRuntimeNextJSPagesRouterEndpoint
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-QHHLM3PY.mjs";
|
|
11
11
|
import {
|
|
12
12
|
copilotRuntimeNestEndpoint
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-ZER62NUN.mjs";
|
|
14
14
|
import {
|
|
15
15
|
copilotRuntimeNodeExpressEndpoint
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-TCZ4SLBS.mjs";
|
|
17
17
|
import {
|
|
18
18
|
CopilotRuntime,
|
|
19
19
|
addCustomHeaderPlugin,
|
|
@@ -29,8 +29,13 @@ import {
|
|
|
29
29
|
getCommonConfig,
|
|
30
30
|
langGraphPlatformEndpoint,
|
|
31
31
|
resolveEndpointType
|
|
32
|
-
} from "./chunk-
|
|
32
|
+
} from "./chunk-6QPAMPDT.mjs";
|
|
33
33
|
import "./chunk-SHBDMA63.mjs";
|
|
34
|
+
import {
|
|
35
|
+
GuardrailsValidationFailureResponse,
|
|
36
|
+
MessageStreamInterruptedResponse,
|
|
37
|
+
UnknownErrorResponse
|
|
38
|
+
} from "./chunk-XWBDEXDA.mjs";
|
|
34
39
|
import {
|
|
35
40
|
AnthropicAdapter,
|
|
36
41
|
BedrockAdapter,
|
|
@@ -44,12 +49,7 @@ import {
|
|
|
44
49
|
OpenAIAssistantAdapter,
|
|
45
50
|
RemoteChain,
|
|
46
51
|
UnifyAdapter
|
|
47
|
-
} from "./chunk-
|
|
48
|
-
import {
|
|
49
|
-
GuardrailsValidationFailureResponse,
|
|
50
|
-
MessageStreamInterruptedResponse,
|
|
51
|
-
UnknownErrorResponse
|
|
52
|
-
} from "./chunk-XWBDEXDA.mjs";
|
|
52
|
+
} from "./chunk-F7IANE7Z.mjs";
|
|
53
53
|
import {
|
|
54
54
|
convertServiceAdapterError
|
|
55
55
|
} from "./chunk-AMUJQ6IR.mjs";
|
package/dist/lib/index.js
CHANGED
|
@@ -44,7 +44,7 @@ var require_package = __commonJS({
|
|
|
44
44
|
publishConfig: {
|
|
45
45
|
access: "public"
|
|
46
46
|
},
|
|
47
|
-
version: "1.10.0-next.
|
|
47
|
+
version: "1.10.0-next.8",
|
|
48
48
|
sideEffects: false,
|
|
49
49
|
main: "./dist/index.js",
|
|
50
50
|
module: "./dist/index.mjs",
|
|
@@ -87,7 +87,7 @@ var require_package = __commonJS({
|
|
|
87
87
|
"@ag-ui/encoder": "0.0.35",
|
|
88
88
|
"@ag-ui/langgraph": "0.0.7",
|
|
89
89
|
"@ag-ui/proto": "0.0.35",
|
|
90
|
-
"@anthropic-ai/sdk": "^0.
|
|
90
|
+
"@anthropic-ai/sdk": "^0.57.0",
|
|
91
91
|
"@copilotkit/shared": "workspace:*",
|
|
92
92
|
"@graphql-yoga/plugin-defer-stream": "^3.3.1",
|
|
93
93
|
"@langchain/aws": "^0.1.9",
|