@alook/daemon 0.1.17 → 0.1.18

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/README.md CHANGED
@@ -358,7 +358,7 @@ if (!opened.ok) throw new Error(opened.error.message);
358
358
  const { session } = opened;
359
359
  const eventsDone = (async () => {
360
360
  for await (const event of session.events) {
361
- if (event.type === "text_delta") process.stdout.write(event.text);
361
+ if (event.type === "assistant_message_completed") console.log(event.text);
362
362
  }
363
363
  })();
364
364