@townco/agent 0.1.76 → 0.1.78

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.
@@ -826,6 +826,11 @@ export class AgentAcpAdapter {
826
826
  toolCallBlock.status =
827
827
  updateMsg.status;
828
828
  }
829
+ // Update rawInput if provided (for preliminary -> full tool call flow)
830
+ if (updateMsg.rawInput &&
831
+ Object.keys(updateMsg.rawInput).length > 0) {
832
+ toolCallBlock.rawInput = updateMsg.rawInput;
833
+ }
829
834
  if (updateMsg.rawOutput) {
830
835
  toolCallBlock.rawOutput = updateMsg.rawOutput;
831
836
  }