-
Notifications
You must be signed in to change notification settings - Fork 425
Add top-level max-turn-cache-misses support with env-managed default
#40388
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
88972d5
059f695
27cdb10
8d7d74c
ab1f56a
8612d2e
71fb6b4
5150b8c
add6512
b560e5f
d515fec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -250,13 +250,14 @@ Example file: | |
|
|
||
| ```yaml | ||
| default_max_ai_credits: "1000" | ||
| default_max_turn_cache_misses: "5" | ||
| default_detection_max_ai_credits: "400" | ||
| default_max_turns: "12" | ||
| default_model_copilot: "gpt-5-mini" | ||
| default_model_codex: null # delete this variable | ||
| ``` | ||
| Recognized keys include `default_max_ai_credits`, `default_detection_max_ai_credits`, `default_max_daily_ai_credits`, `default_timeout_minutes`, `default_max_turns`, `default_detection_model`, `default_utc`, `default_model_copilot`, `default_model_claude`, `default_model_codex`. The compiler resolves model selection as `GH_AW_MODEL_*` → `GH_AW_DEFAULT_MODEL_*` → built-in engine fallback. | ||
| Recognized keys include `default_max_ai_credits`, `default_max_turn_cache_misses`, `default_detection_max_ai_credits`, `default_max_daily_ai_credits`, `default_timeout_minutes`, `default_max_turns`, `default_detection_model`, `default_utc`, `default_model_copilot`, `default_model_claude`, `default_model_codex`. The compiler resolves model selection as `GH_AW_MODEL_*` → `GH_AW_DEFAULT_MODEL_*` → built-in engine fallback. | ||
|
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. Consider keeping the recognized-keys ordering consistent with the YAML example above for easier scanning. |
||
|
|
||
| **MCP equivalent**: Not available — run from a local terminal. | ||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Nice — documenting the new
default_max_turn_cache_missesenv default here keeps the recognized-keys list discoverable. 👍