@standardagents/builder 0.11.5 → 0.11.6
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/dist/built-in-routes.js +63 -24
- package/dist/built-in-routes.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +67 -26
- package/dist/index.js.map +1 -1
- package/dist/plugin.js +4 -2
- package/dist/plugin.js.map +1 -1
- package/package.json +4 -4
package/dist/plugin.js
CHANGED
|
@@ -2207,7 +2207,8 @@ function agentbuilder(options = {}) {
|
|
|
2207
2207
|
];
|
|
2208
2208
|
const depsToInclude = [
|
|
2209
2209
|
"zod",
|
|
2210
|
-
"openai"
|
|
2210
|
+
"openai",
|
|
2211
|
+
"@standardagents/spec"
|
|
2211
2212
|
];
|
|
2212
2213
|
const currentDir = path3.dirname(fileURLToPath(import.meta.url));
|
|
2213
2214
|
const isInDist = currentDir.endsWith("dist");
|
|
@@ -2256,7 +2257,8 @@ function agentbuilder(options = {}) {
|
|
|
2256
2257
|
"zod/v3",
|
|
2257
2258
|
"zod/v4",
|
|
2258
2259
|
"zod/v4/core",
|
|
2259
|
-
"openai"
|
|
2260
|
+
"openai",
|
|
2261
|
+
"@standardagents/spec"
|
|
2260
2262
|
];
|
|
2261
2263
|
config.optimizeDeps = config.optimizeDeps || {};
|
|
2262
2264
|
config.optimizeDeps.exclude = [
|