@caupulican/pi-adaptative 0.80.16 → 0.80.17

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.
@@ -62,7 +62,7 @@ import { SettingsSelectorComponent } from "./components/settings-selector.js";
62
62
  import { SkillInvocationMessageComponent } from "./components/skill-invocation-message.js";
63
63
  import { ToolExecutionComponent } from "./components/tool-execution.js";
64
64
  import { ToolGroupComponent } from "./components/tool-group.js";
65
- import { getToolPanelActionKey, shouldReuseToolPanelInPlace, ToolPanelRegistry, } from "./components/tool-panel-registry.js";
65
+ import { getToolPanelActionKey, getToolPanelResultActionKeys, shouldReuseToolPanelInPlace, ToolPanelRegistry, } from "./components/tool-panel-registry.js";
66
66
  import { TreeSelectorComponent } from "./components/tree-selector.js";
67
67
  import { TrustSelectorComponent } from "./components/trust-selector.js";
68
68
  import { UserMessageComponent } from "./components/user-message.js";
@@ -2696,6 +2696,7 @@ export class InteractiveMode {
2696
2696
  const component = this.toolPanels.getActive(event.toolCallId);
2697
2697
  if (component) {
2698
2698
  component.updateResult({ ...event.result, isError: event.isError });
2699
+ this.toolPanels.registerAliases(component, getToolPanelResultActionKeys(this.getToolPanelScope(), event.toolName, event.result));
2699
2700
  this.toolPanels.finish(event.toolCallId);
2700
2701
  this.ui.requestRender();
2701
2702
  }