@leanandmean/coding-agent 0.74.1-scramjet.8 → 0.74.1-scramjet.9

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.
@@ -1232,6 +1232,7 @@ export class InteractiveMode {
1232
1232
  sessionManager: this.sessionManager,
1233
1233
  modelRegistry: this.session.modelRegistry,
1234
1234
  model: this.session.model,
1235
+ scopedModels: this.session.scopedModels,
1235
1236
  isIdle: () => !this.session.isStreaming,
1236
1237
  signal: this.session.agent.signal,
1237
1238
  abort: () => this.session.abort(),
@@ -2572,6 +2573,8 @@ export class InteractiveMode {
2572
2573
  // Match tool results to pending tool components
2573
2574
  const component = renderedPendingTools.get(message.toolCallId);
2574
2575
  if (component) {
2576
+ component.markExecutionStarted();
2577
+ component.setArgsComplete();
2575
2578
  component.updateResult(message);
2576
2579
  renderedPendingTools.delete(message.toolCallId);
2577
2580
  }