@copilotkit/runtime 1.54.1-next.1 → 1.54.1-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 +17 -0
- package/dist/lib/runtime/agent-integrations/langgraph/agent.d.cts +27 -17
- package/dist/lib/runtime/agent-integrations/langgraph/agent.d.cts.map +1 -1
- package/dist/lib/runtime/agent-integrations/langgraph/agent.d.mts +27 -17
- package/dist/lib/runtime/agent-integrations/langgraph/agent.d.mts.map +1 -1
- package/dist/package.cjs +2 -2
- package/dist/package.mjs +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @copilotkit/runtime
|
|
2
2
|
|
|
3
|
+
## 1.54.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @copilotkit/shared@1.54.1-next.3
|
|
8
|
+
- @copilotkitnext/agent@1.54.1-next.3
|
|
9
|
+
- @copilotkitnext/runtime@1.54.1-next.3
|
|
10
|
+
|
|
11
|
+
## 1.54.1-next.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- a0a1cf4: feat: re export state streaming langgraph middleware
|
|
16
|
+
- @copilotkit/shared@1.54.1-next.2
|
|
17
|
+
- @copilotkitnext/agent@1.54.1-next.2
|
|
18
|
+
- @copilotkitnext/runtime@1.54.1-next.2
|
|
19
|
+
|
|
3
20
|
## 1.54.1-next.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -40,21 +40,42 @@ declare class LangGraphAgent$1 extends LangGraphAgent {
|
|
|
40
40
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
41
41
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
42
42
|
} & {
|
|
43
|
-
type: zod.ZodLiteral<EventType.
|
|
44
|
-
|
|
43
|
+
type: zod.ZodLiteral<EventType.REASONING_START>;
|
|
44
|
+
messageId: zod.ZodString;
|
|
45
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
45
46
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
46
47
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
47
48
|
} & {
|
|
48
|
-
type: zod.ZodLiteral<EventType.
|
|
49
|
+
type: zod.ZodLiteral<EventType.REASONING_MESSAGE_START>;
|
|
50
|
+
messageId: zod.ZodString;
|
|
51
|
+
role: zod.ZodLiteral<"reasoning">;
|
|
52
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
53
|
+
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
54
|
+
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
55
|
+
} & {
|
|
56
|
+
type: zod.ZodLiteral<EventType.REASONING_MESSAGE_CONTENT>;
|
|
49
57
|
messageId: zod.ZodString;
|
|
50
58
|
delta: zod.ZodEffects<zod.ZodString, string, string>;
|
|
51
|
-
}, "type" | "messageId"> & {
|
|
52
|
-
type: zod.ZodLiteral<EventType.THINKING_TEXT_MESSAGE_CONTENT>;
|
|
53
59
|
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
54
60
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
55
61
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
56
62
|
} & {
|
|
57
|
-
type: zod.ZodLiteral<EventType.
|
|
63
|
+
type: zod.ZodLiteral<EventType.REASONING_MESSAGE_END>;
|
|
64
|
+
messageId: zod.ZodString;
|
|
65
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
66
|
+
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
67
|
+
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
68
|
+
} & {
|
|
69
|
+
type: zod.ZodLiteral<EventType.REASONING_END>;
|
|
70
|
+
messageId: zod.ZodString;
|
|
71
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
72
|
+
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
73
|
+
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
74
|
+
} & {
|
|
75
|
+
type: zod.ZodLiteral<EventType.REASONING_ENCRYPTED_VALUE>;
|
|
76
|
+
subtype: zod.ZodUnion<[zod.ZodLiteral<"tool-call">, zod.ZodLiteral<"message">]>;
|
|
77
|
+
entityId: zod.ZodString;
|
|
78
|
+
encryptedValue: zod.ZodString;
|
|
58
79
|
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
59
80
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
60
81
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
@@ -88,17 +109,6 @@ declare class LangGraphAgent$1 extends LangGraphAgent {
|
|
|
88
109
|
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
89
110
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
90
111
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
91
|
-
} & {
|
|
92
|
-
type: zod.ZodLiteral<EventType.THINKING_START>;
|
|
93
|
-
title: zod.ZodOptional<zod.ZodString>;
|
|
94
|
-
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
95
|
-
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
96
|
-
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
97
|
-
} & {
|
|
98
|
-
type: zod.ZodLiteral<EventType.THINKING_END>;
|
|
99
|
-
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
100
|
-
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
101
|
-
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
102
112
|
} & {
|
|
103
113
|
type: zod.ZodLiteral<EventType.STATE_SNAPSHOT>;
|
|
104
114
|
snapshot: zod.ZodAny;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.d.cts","names":[],"sources":["../../../../../src/lib/runtime/agent-integrations/langgraph/agent.ts"],"mappings":";;;;;;;;;UAeU,yBAAA;EACR,UAAA;IACE,OAAA,EAAS,eAAA;IACT,OAAA,EAAS,eAAA;EAAA;AAAA;AAAA,cAeA,gBAAA,SAAuB,cAAA;cACtB,MAAA,EAAQ,oBAAA;EAIpB,aAAA,CAAc,KAAA,EAAO,eAAA;EAqHrB,GAAA,CAAI,KAAA,EAAO,aAAA,QAAa,UAAA,KAAA,gBAAA;+BAAA,GAAA,CAAA,SAAA;;;;;;;+BAAA,GAAA,CAAA,SAAA
|
|
1
|
+
{"version":3,"file":"agent.d.cts","names":[],"sources":["../../../../../src/lib/runtime/agent-integrations/langgraph/agent.ts"],"mappings":";;;;;;;;;UAeU,yBAAA;EACR,UAAA;IACE,OAAA,EAAS,eAAA;IACT,OAAA,EAAS,eAAA;EAAA;AAAA;AAAA,cAeA,gBAAA,SAAuB,cAAA;cACtB,MAAA,EAAQ,oBAAA;EAIpB,aAAA,CAAc,KAAA,EAAO,eAAA;EAqHrB,GAAA,CAAI,KAAA,EAAO,aAAA,QAAa,UAAA,KAAA,gBAAA;+BAAA,GAAA,CAAA,SAAA;;;;;;;+BAAA,GAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCxB,0BAAA,CACE,KAAA,EAAO,KAAA,EACP,QAAA,EAAU,OAAA,IACV,KAAA,EAAO,aAAA,GACN,KAAA,CAAM,eAAA,GAAkB,yBAAA;EA8BrB,aAAA,CAAA,GAAiB,OAAA,CAAQ,UAAA;AAAA"}
|
|
@@ -40,21 +40,42 @@ declare class LangGraphAgent$1 extends LangGraphAgent {
|
|
|
40
40
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
41
41
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
42
42
|
} & {
|
|
43
|
-
type: zod.ZodLiteral<EventType.
|
|
44
|
-
|
|
43
|
+
type: zod.ZodLiteral<EventType.REASONING_START>;
|
|
44
|
+
messageId: zod.ZodString;
|
|
45
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
45
46
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
46
47
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
47
48
|
} & {
|
|
48
|
-
type: zod.ZodLiteral<EventType.
|
|
49
|
+
type: zod.ZodLiteral<EventType.REASONING_MESSAGE_START>;
|
|
50
|
+
messageId: zod.ZodString;
|
|
51
|
+
role: zod.ZodLiteral<"reasoning">;
|
|
52
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
53
|
+
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
54
|
+
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
55
|
+
} & {
|
|
56
|
+
type: zod.ZodLiteral<EventType.REASONING_MESSAGE_CONTENT>;
|
|
49
57
|
messageId: zod.ZodString;
|
|
50
58
|
delta: zod.ZodEffects<zod.ZodString, string, string>;
|
|
51
|
-
}, "type" | "messageId"> & {
|
|
52
|
-
type: zod.ZodLiteral<EventType.THINKING_TEXT_MESSAGE_CONTENT>;
|
|
53
59
|
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
54
60
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
55
61
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
56
62
|
} & {
|
|
57
|
-
type: zod.ZodLiteral<EventType.
|
|
63
|
+
type: zod.ZodLiteral<EventType.REASONING_MESSAGE_END>;
|
|
64
|
+
messageId: zod.ZodString;
|
|
65
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
66
|
+
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
67
|
+
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
68
|
+
} & {
|
|
69
|
+
type: zod.ZodLiteral<EventType.REASONING_END>;
|
|
70
|
+
messageId: zod.ZodString;
|
|
71
|
+
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
72
|
+
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
73
|
+
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
74
|
+
} & {
|
|
75
|
+
type: zod.ZodLiteral<EventType.REASONING_ENCRYPTED_VALUE>;
|
|
76
|
+
subtype: zod.ZodUnion<[zod.ZodLiteral<"tool-call">, zod.ZodLiteral<"message">]>;
|
|
77
|
+
entityId: zod.ZodString;
|
|
78
|
+
encryptedValue: zod.ZodString;
|
|
58
79
|
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
59
80
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
60
81
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
@@ -88,17 +109,6 @@ declare class LangGraphAgent$1 extends LangGraphAgent {
|
|
|
88
109
|
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
89
110
|
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
90
111
|
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
91
|
-
} & {
|
|
92
|
-
type: zod.ZodLiteral<EventType.THINKING_START>;
|
|
93
|
-
title: zod.ZodOptional<zod.ZodString>;
|
|
94
|
-
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
95
|
-
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
96
|
-
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
97
|
-
} & {
|
|
98
|
-
type: zod.ZodLiteral<EventType.THINKING_END>;
|
|
99
|
-
}, zod.ZodTypeAny, "passthrough"> | zod.objectOutputType<{
|
|
100
|
-
timestamp: zod.ZodOptional<zod.ZodNumber>;
|
|
101
|
-
rawEvent: zod.ZodOptional<zod.ZodAny>;
|
|
102
112
|
} & {
|
|
103
113
|
type: zod.ZodLiteral<EventType.STATE_SNAPSHOT>;
|
|
104
114
|
snapshot: zod.ZodAny;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent.d.mts","names":[],"sources":["../../../../../src/lib/runtime/agent-integrations/langgraph/agent.ts"],"mappings":";;;;;;;;;UAeU,yBAAA;EACR,UAAA;IACE,OAAA,EAAS,eAAA;IACT,OAAA,EAAS,eAAA;EAAA;AAAA;AAAA,cAeA,gBAAA,SAAuB,cAAA;cACtB,MAAA,EAAQ,oBAAA;EAIpB,aAAA,CAAc,KAAA,EAAO,eAAA;EAqHrB,GAAA,CAAI,KAAA,EAAO,aAAA,QAAa,UAAA,KAAA,gBAAA;+BAAA,GAAA,CAAA,SAAA;;;;;;;+BAAA,GAAA,CAAA,SAAA
|
|
1
|
+
{"version":3,"file":"agent.d.mts","names":[],"sources":["../../../../../src/lib/runtime/agent-integrations/langgraph/agent.ts"],"mappings":";;;;;;;;;UAeU,yBAAA;EACR,UAAA;IACE,OAAA,EAAS,eAAA;IACT,OAAA,EAAS,eAAA;EAAA;AAAA;AAAA,cAeA,gBAAA,SAAuB,cAAA;cACtB,MAAA,EAAQ,oBAAA;EAIpB,aAAA,CAAc,KAAA,EAAO,eAAA;EAqHrB,GAAA,CAAI,KAAA,EAAO,aAAA,QAAa,UAAA,KAAA,gBAAA;+BAAA,GAAA,CAAA,SAAA;;;;;;;+BAAA,GAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoCxB,0BAAA,CACE,KAAA,EAAO,KAAA,EACP,QAAA,EAAU,OAAA,IACV,KAAA,EAAO,aAAA,GACN,KAAA,CAAM,eAAA,GAAkB,yBAAA;EA8BrB,aAAA,CAAA,GAAiB,OAAA,CAAQ,UAAA;AAAA"}
|
package/dist/package.cjs
CHANGED
|
@@ -12,7 +12,7 @@ var require_package = /* @__PURE__ */ require_runtime.__commonJSMin(((exports, m
|
|
|
12
12
|
"url": "https://github.com/CopilotKit/CopilotKit.git"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": { "access": "public" },
|
|
15
|
-
"version": "1.54.1-next.
|
|
15
|
+
"version": "1.54.1-next.3",
|
|
16
16
|
"sideEffects": [
|
|
17
17
|
"./dist/index.mjs",
|
|
18
18
|
"./dist/index.cjs",
|
|
@@ -66,7 +66,7 @@ var require_package = /* @__PURE__ */ require_runtime.__commonJSMin(((exports, m
|
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@ag-ui/client": "^0.0.47",
|
|
68
68
|
"@ag-ui/core": "^0.0.47",
|
|
69
|
-
"@ag-ui/langgraph": "^0.0.
|
|
69
|
+
"@ag-ui/langgraph": "^0.0.25",
|
|
70
70
|
"@ai-sdk/anthropic": "^3.0.49",
|
|
71
71
|
"@ai-sdk/openai": "^3.0.36",
|
|
72
72
|
"@copilotkit/shared": "workspace:*",
|
package/dist/package.mjs
CHANGED
|
@@ -12,7 +12,7 @@ var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
12
12
|
"url": "https://github.com/CopilotKit/CopilotKit.git"
|
|
13
13
|
},
|
|
14
14
|
"publishConfig": { "access": "public" },
|
|
15
|
-
"version": "1.54.1-next.
|
|
15
|
+
"version": "1.54.1-next.3",
|
|
16
16
|
"sideEffects": [
|
|
17
17
|
"./dist/index.mjs",
|
|
18
18
|
"./dist/index.cjs",
|
|
@@ -66,7 +66,7 @@ var require_package = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@ag-ui/client": "^0.0.47",
|
|
68
68
|
"@ag-ui/core": "^0.0.47",
|
|
69
|
-
"@ag-ui/langgraph": "^0.0.
|
|
69
|
+
"@ag-ui/langgraph": "^0.0.25",
|
|
70
70
|
"@ai-sdk/anthropic": "^3.0.49",
|
|
71
71
|
"@ai-sdk/openai": "^3.0.36",
|
|
72
72
|
"@copilotkit/shared": "workspace:*",
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"version": "1.54.1-next.
|
|
12
|
+
"version": "1.54.1-next.3",
|
|
13
13
|
"sideEffects": [
|
|
14
14
|
"./dist/index.mjs",
|
|
15
15
|
"./dist/index.cjs",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@ag-ui/client": "^0.0.47",
|
|
53
53
|
"@ag-ui/core": "^0.0.47",
|
|
54
|
-
"@ag-ui/langgraph": "^0.0.
|
|
54
|
+
"@ag-ui/langgraph": "^0.0.25",
|
|
55
55
|
"@ai-sdk/anthropic": "^3.0.49",
|
|
56
56
|
"@ai-sdk/openai": "^3.0.36",
|
|
57
57
|
"@graphql-yoga/plugin-defer-stream": "^3.3.1",
|
|
@@ -72,9 +72,9 @@
|
|
|
72
72
|
"rxjs": "7.8.1",
|
|
73
73
|
"type-graphql": "2.0.0-rc.1",
|
|
74
74
|
"zod": "^3.23.3",
|
|
75
|
-
"@copilotkit/shared": "1.54.1-next.
|
|
76
|
-
"@copilotkitnext/agent": "1.54.1-next.
|
|
77
|
-
"@copilotkitnext/runtime": "1.54.1-next.
|
|
75
|
+
"@copilotkit/shared": "1.54.1-next.3",
|
|
76
|
+
"@copilotkitnext/agent": "1.54.1-next.3",
|
|
77
|
+
"@copilotkitnext/runtime": "1.54.1-next.3"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"@anthropic-ai/sdk": "^0.57.0",
|