mirror of
https://github.com/openai/codex.git
synced 2026-05-01 09:56:37 +00:00
feat(auto-review) policy config (#18959)
## Summary Allow users to customize their own auto-review policy config. ## Testing - [x] added config_tests
This commit is contained in:
@@ -292,6 +292,15 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"AutoReviewToml": {
|
||||
"properties": {
|
||||
"policy": {
|
||||
"description": "Additional policy instructions inserted into the guardian prompt.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"BundledSkillsConfig": {
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
@@ -2253,6 +2262,15 @@
|
||||
"default": null,
|
||||
"description": "Machine-local realtime audio device preferences used by realtime voice."
|
||||
},
|
||||
"auto_review": {
|
||||
"allOf": [
|
||||
{
|
||||
"$ref": "#/definitions/AutoReviewToml"
|
||||
}
|
||||
],
|
||||
"default": null,
|
||||
"description": "Optional policy instructions for the guardian auto-reviewer."
|
||||
},
|
||||
"background_terminal_max_timeout": {
|
||||
"description": "Maximum poll window for background terminal output (`write_stdin`), in milliseconds. Default: `300000` (5 minutes).",
|
||||
"format": "uint64",
|
||||
|
||||
Reference in New Issue
Block a user