@bluecopa/harness 0.1.0-snapshot.23 → 0.1.0-snapshot.24

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluecopa/harness",
3
- "version": "0.1.0-snapshot.23",
3
+ "version": "0.1.0-snapshot.24",
4
4
  "description": "Provider-agnostic TypeScript agent framework",
5
5
  "license": "UNLICENSED",
6
6
  "scripts": {
@@ -293,7 +293,7 @@ export class ArcLoop {
293
293
  if (!proc) {
294
294
  resultText = `Process not found: ${call.args.id}`;
295
295
  } else if (proc.result) {
296
- resultText = `Process ${proc.id} [${proc.status}]:\n${proc.result.episode.summary}`;
296
+ resultText = `Process ${proc.id} [${proc.status}] (episodeId: ${proc.result.episode.id}):\n${proc.result.episode.summary}`;
297
297
  } else {
298
298
  resultText = `Process ${proc.id}: status=${proc.status}`;
299
299
  }