From 0139f6780c850d87bb37bbb3a11e763d5dc3b50d Mon Sep 17 00:00:00 2001 From: Jeremy Rose <172423086+nornagon-openai@users.noreply.github.com> Date: Wed, 15 Oct 2025 23:22:39 -0700 Subject: [PATCH] Fix notify documentation to use emitted input-messages key (#5071) ## Summary - align the notify configuration example with the CLI payload by reading the `input-messages` key Fixes #4954 ------ https://chatgpt.com/codex/tasks/task_i_68e95e2be6ec832c8d09d6c65aac7c93 --- docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config.md b/docs/config.md index ad329088..8b5a45ab 100644 --- a/docs/config.md +++ b/docs/config.md @@ -640,7 +640,7 @@ def main() -> int: title = f"Codex: {assistant_message}" else: title = "Codex: Turn Complete!" - input_messages = notification.get("input_messages", []) + input_messages = notification.get("input-messages", []) message = " ".join(input_messages) title += message case _: