-
Notifications
You must be signed in to change notification settings - Fork 15.5k
[codex] current time reminder interval to be set to 0 #30029
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -147,7 +147,6 @@ pub struct CurrentTimeReminderConfigToml { | |
| #[serde(skip_serializing_if = "Option::is_none")] | ||
| pub enabled: Option<bool>, | ||
| #[serde(skip_serializing_if = "Option::is_none")] | ||
| #[schemars(range(min = 1))] | ||
| pub reminder_interval_seconds: Option<u64>, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Allowing Useful? React with 👍 / 👎.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
| #[serde(skip_serializing_if = "Option::is_none")] | ||
| pub clock_source: Option<CurrentTimeSource>, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new
0case is only exercised through config deserialization here; the behavior being introduced is agent scheduling/history injection at inference boundaries, but nocore/suite/current_time_reminderintegration test coversreminder_interval_seconds = 0. That leaves the user-facing guarantee for zero intervals untested through the path that records reminders into model-visible history, contrary to the repo requirement for agent-logic changes; add an integration test that drives multiple inference boundaries with interval0.AGENTS.md reference: AGENTS.md:L112-L118
Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done