@copilotkit/runtime 1.50.1-next.2 → 1.50.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 +7 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/lib/runtime/copilot-runtime.ts +11 -11
package/CHANGELOG.md
CHANGED
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.1-next.
|
|
75
|
+
version: "1.50.1-next.3",
|
|
76
76
|
sideEffects: false,
|
|
77
77
|
main: "./dist/index.js",
|
|
78
78
|
module: "./dist/index.mjs",
|
|
@@ -127,8 +127,8 @@ var require_package = __commonJS({
|
|
|
127
127
|
"@ag-ui/core": "^0.0.42",
|
|
128
128
|
"@ag-ui/langgraph": "^0.0.20",
|
|
129
129
|
"@copilotkit/shared": "workspace:*",
|
|
130
|
-
"@copilotkitnext/agent": "0.0.
|
|
131
|
-
"@copilotkitnext/runtime": "0.0.
|
|
130
|
+
"@copilotkitnext/agent": "0.0.33",
|
|
131
|
+
"@copilotkitnext/runtime": "0.0.33",
|
|
132
132
|
"@graphql-yoga/plugin-defer-stream": "^3.3.1",
|
|
133
133
|
"@hono/node-server": "^1.13.5",
|
|
134
134
|
"@scarf/scarf": "^1.3.0",
|
|
@@ -3518,7 +3518,7 @@ var CopilotRuntime = class {
|
|
|
3518
3518
|
});
|
|
3519
3519
|
}
|
|
3520
3520
|
if (isAgentsListEmpty) {
|
|
3521
|
-
agentsList.default = new agent.
|
|
3521
|
+
agentsList.default = new agent.BuiltInAgent({
|
|
3522
3522
|
model: `${serviceAdapter.provider}/${serviceAdapter.model}`
|
|
3523
3523
|
});
|
|
3524
3524
|
}
|
|
@@ -3664,7 +3664,7 @@ var CopilotRuntime = class {
|
|
|
3664
3664
|
console.error("Error setting up logging for LLM response:", error);
|
|
3665
3665
|
}
|
|
3666
3666
|
}
|
|
3667
|
-
// Resolve MCP tools to
|
|
3667
|
+
// Resolve MCP tools to BuiltInAgent tool definitions
|
|
3668
3668
|
// Optionally accepts request-scoped properties to merge request-provided mcpServers
|
|
3669
3669
|
async getToolsFromMCP(options) {
|
|
3670
3670
|
var _a, _b, _c, _d;
|