merge in v0.9.0

This commit is contained in:
webdevcody
2026-01-07 18:22:32 -05:00
9 changed files with 1215 additions and 17 deletions

View File

@@ -72,7 +72,7 @@ const CODEX_EVENT_TYPES = {
itemCompleted: 'item.completed',
itemStarted: 'item.started',
itemUpdated: 'item.updated',
threadCompleted: 'thread.completed',
turnCompleted: 'turn.completed',
error: 'error',
} as const;
@@ -817,7 +817,7 @@ export class CodexProvider extends BaseProvider {
continue;
}
if (eventType === CODEX_EVENT_TYPES.threadCompleted) {
if (eventType === CODEX_EVENT_TYPES.turnCompleted) {
const resultText = extractText(event.result) || undefined;
yield { type: 'result', subtype: 'success', result: resultText };
continue;