@standardagents/builder 0.12.2 → 0.12.4

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/plugin.js CHANGED
@@ -1326,9 +1326,6 @@ function validateModelData(data) {
1326
1326
  if (!data.name || typeof data.name !== "string") {
1327
1327
  return "Model name is required and must be a string";
1328
1328
  }
1329
- if (data.name.includes("/")) {
1330
- return "Model name cannot contain '/'. Reserved for namespace qualification.";
1331
- }
1332
1329
  if (!data.provider || typeof data.provider !== "string") {
1333
1330
  return "Model provider is required and must be a string";
1334
1331
  }