@standardagents/builder 0.11.0-next.af971ae → 0.11.0

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.d.ts CHANGED
@@ -8,6 +8,13 @@ interface AgentPluginOptions {
8
8
  modelsDir?: string;
9
9
  promptsDir?: string;
10
10
  agentsDir?: string;
11
+ effectsDir?: string;
12
+ /**
13
+ * Additional provider packages to expose in the UI.
14
+ * First-party providers (@standardagents/openai, @standardagents/openrouter) are always included.
15
+ * @example ['my-custom-provider', '@company/custom-openai']
16
+ */
17
+ providers?: string[];
11
18
  }
12
19
  declare function agentbuilder(options?: AgentPluginOptions): Plugin;
13
20