improve instructions, codex logging

This commit is contained in:
David Blass
2025-11-13 15:49:20 -05:00
parent d7878095a6
commit 692719029c
5 changed files with 14 additions and 15 deletions
-1
View File
@@ -48,7 +48,6 @@ export const codex = agent({
let finalOutput = "";
for await (const event of streamedTurn.events) {
const handler = messageHandlers[event.type];
console.log(JSON.stringify(event, null, 2));
if (handler) {
handler(event as never);
}