@alook/daemon 0.1.17 → 0.1.19
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 +1 -1
- package/dist/cli/index.js +1506 -300
- package/dist/index.js +1421 -290
- package/package.json +1 -1
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 === "
|
|
361
|
+
if (event.type === "assistant_message_completed") console.log(event.text);
|
|
362
362
|
}
|
|
363
363
|
})();
|
|
364
364
|
|