@copilotkit/runtime 1.50.0-beta.14 → 1.50.0-beta.16
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 +22 -0
- package/dist/index.d.ts +6 -6
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/lib/index.ts +6 -6
- package/src/lib/runtime/copilot-runtime.ts +1 -2
- package/src/lib/runtime/telemetry-agent-runner.ts +10 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @copilotkit/runtime
|
|
2
2
|
|
|
3
|
+
## 1.50.0-beta.16
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Minor fixes and stability improvements
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @copilotkit/shared@1.50.0-beta.16
|
|
13
|
+
|
|
14
|
+
## 1.50.0-beta.15
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- Lint and format code to resolve Prettier errors
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @copilotkit/shared@1.50.0-beta.15
|
|
24
|
+
|
|
3
25
|
## 1.50.0-beta.14
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1429,31 +1429,31 @@ declare class TelemetryAgentRunner implements AgentRunner {
|
|
|
1429
1429
|
}
|
|
1430
1430
|
|
|
1431
1431
|
/**
|
|
1432
|
-
* @deprecated LangGraphAgent import from
|
|
1432
|
+
* @deprecated LangGraphAgent import from `@copilotkit/runtime` is deprecated. Please import it from `@copilotkit/runtime/langgraph` instead
|
|
1433
1433
|
*/
|
|
1434
1434
|
declare class LangGraphAgent {
|
|
1435
1435
|
constructor();
|
|
1436
1436
|
}
|
|
1437
1437
|
/**
|
|
1438
|
-
* @deprecated LangGraphHttpAgent import from
|
|
1438
|
+
* @deprecated LangGraphHttpAgent import from `@copilotkit/runtime` is deprecated. Please import it from `@copilotkit/runtime/langgraph` instead
|
|
1439
1439
|
*/
|
|
1440
1440
|
declare class LangGraphHttpAgent {
|
|
1441
1441
|
constructor();
|
|
1442
1442
|
}
|
|
1443
1443
|
/**
|
|
1444
|
-
* @deprecated TextMessageEvents import from
|
|
1444
|
+
* @deprecated TextMessageEvents import from `@copilotkit/runtime` is deprecated. Please import it from `@copilotkit/runtime/langgraph` instead
|
|
1445
1445
|
*/
|
|
1446
1446
|
type TextMessageEvents = any;
|
|
1447
1447
|
/**
|
|
1448
|
-
* @deprecated ToolCallEvents import from
|
|
1448
|
+
* @deprecated ToolCallEvents import from `@copilotkit/runtime` is deprecated. Please import it from `@copilotkit/runtime/langgraph` instead
|
|
1449
1449
|
*/
|
|
1450
1450
|
type ToolCallEvents = any;
|
|
1451
1451
|
/**
|
|
1452
|
-
* @deprecated CustomEventNames import from
|
|
1452
|
+
* @deprecated CustomEventNames import from `@copilotkit/runtime` is deprecated. Please import it from `@copilotkit/runtime/langgraph` instead
|
|
1453
1453
|
*/
|
|
1454
1454
|
type CustomEventNames = any;
|
|
1455
1455
|
/**
|
|
1456
|
-
* @deprecated PredictStateTool import from
|
|
1456
|
+
* @deprecated PredictStateTool import from `@copilotkit/runtime` is deprecated. Please import it from `@copilotkit/runtime/langgraph` instead
|
|
1457
1457
|
*/
|
|
1458
1458
|
type PredictStateTool = any;
|
|
1459
1459
|
|
package/dist/index.js
CHANGED
|
@@ -72,7 +72,7 @@ var require_package = __commonJS({
|
|
|
72
72
|
publishConfig: {
|
|
73
73
|
access: "public"
|
|
74
74
|
},
|
|
75
|
-
version: "1.50.0-beta.
|
|
75
|
+
version: "1.50.0-beta.16",
|
|
76
76
|
sideEffects: false,
|
|
77
77
|
main: "./dist/index.js",
|
|
78
78
|
module: "./dist/index.mjs",
|
|
@@ -124,8 +124,8 @@ var require_package = __commonJS({
|
|
|
124
124
|
},
|
|
125
125
|
dependencies: {
|
|
126
126
|
"@copilotkit/shared": "workspace:*",
|
|
127
|
-
"@copilotkitnext/agent": "0.0.
|
|
128
|
-
"@copilotkitnext/runtime": "0.0.
|
|
127
|
+
"@copilotkitnext/agent": "0.0.31",
|
|
128
|
+
"@copilotkitnext/runtime": "0.0.31",
|
|
129
129
|
"@graphql-yoga/plugin-defer-stream": "^3.3.1",
|
|
130
130
|
"@hono/node-server": "^1.13.5",
|
|
131
131
|
"@langchain/core": "^0.3.38",
|