@shipers-dev/multi 0.3.0 → 0.3.1

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/dist/index.js CHANGED
@@ -5774,9 +5774,7 @@ _${bits.join(" \xB7 ")}_`);
5774
5774
  }
5775
5775
  case "assistant_text": {
5776
5776
  await ensureLiveComment();
5777
- turn.text += (turn.text ? `
5778
-
5779
- ` : "") + p.text;
5777
+ turn.text += p.text;
5780
5778
  hasAssistantText = true;
5781
5779
  schedulePatch();
5782
5780
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipers-dev/multi",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "multi-agent": "./dist/index.js"
package/src/index.ts CHANGED
@@ -390,7 +390,7 @@ async function handleRunTask(apiUrl: string, deviceId: string, task: any, detect
390
390
  }
391
391
  case 'assistant_text': {
392
392
  await ensureLiveComment();
393
- turn.text += (turn.text ? '\n\n' : '') + p.text;
393
+ turn.text += p.text;
394
394
  hasAssistantText = true;
395
395
  schedulePatch();
396
396
  break;