Skip to content

Commit ff9702c

Browse files
committed
Merge PR openai#480: Log the start of model reasoning in background job logs
2 parents 298b4f1 + 6c724c2 commit ff9702c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

plugins/codex/scripts/lib/codex.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,8 @@ function describeStartedItem(state, item) {
258258
}
259259
case "webSearch":
260260
return { message: `Searching: ${shorten(item.query, 96)}`, phase: "investigating" };
261+
case "reasoning":
262+
return { message: "Thinking.", phase: null };
261263
default:
262264
return null;
263265
}

0 commit comments

Comments
 (0)