@acorex/modules 21.0.0-next.55 → 21.0.0-next.56

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@acorex/modules",
3
- "version": "21.0.0-next.55",
3
+ "version": "21.0.0-next.56",
4
4
  "peerDependencies": {
5
- "@acorex/platform": "21.0.0-next.55",
5
+ "@acorex/platform": "21.0.0-next.56",
6
6
  "@angular/service-worker": "^20.0.0",
7
7
  "d3": "^7.0.0",
8
8
  "html2canvas": "^1.0.0",
@@ -325,6 +325,10 @@ interface AXPAiEngineRunOptions {
325
325
  planningMode?: 'off' | 'once' | 'when-needed';
326
326
  includeRules?: string[];
327
327
  excludeRules?: string[];
328
+ /** Adds delegated specialists for this run only (AiAgent catalog `id` or programmatic `name`). */
329
+ includeAgents?: string[];
330
+ /** Removes delegated specialists for this run (matches catalog `id` or `name`, case-insensitive). */
331
+ excludeAgents?: string[];
328
332
  platformRuntimeContext?: AXPAiPlatformRuntimeContext | null;
329
333
  outputContract?: AXPAiAgentOutputContract;
330
334
  onRunEvent?: (event: AXPAiEngineRunEvent) => void;