@standardagents/builder 0.10.1-next.82e11d5 → 0.11.0-next.ab7e1ea

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
@@ -1126,7 +1126,7 @@ function validateModelData(data) {
1126
1126
  if (!data.provider || typeof data.provider !== "string") {
1127
1127
  return "Model provider is required and must be a string";
1128
1128
  }
1129
- const validProviders = ["openai", "openrouter", "anthropic", "google"];
1129
+ const validProviders = ["openai", "openrouter", "anthropic", "google", "test"];
1130
1130
  if (!validProviders.includes(data.provider)) {
1131
1131
  return `Invalid provider '${data.provider}'. Must be one of: ${validProviders.join(", ")}`;
1132
1132
  }