Last active
February 13, 2026 20:29
-
-
Save edihasaj/ccb07938869003693aff8877e054ca9c to your computer and use it in GitHub Desktop.
CODEX config.toml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| model = "gpt-5.3-codex" | |
| model_reasoning_effort = "high" | |
| tool_output_token_limit = 25000 | |
| # Leave room for native compaction near the 272–273k context window. | |
| # Formula: 273000 - (tool_output_token_limit + 15000) | |
| # With tool_output_token_limit=25000 ⇒ 273000 - (25000 + 15000) = 233000 | |
| model_auto_compact_token_limit = 233000 | |
| [features] | |
| ghost_commit = false | |
| unified_exec = true | |
| apply_patch_freeform = true | |
| skills = true | |
| shell_snapshot = true | |
| [projects."/Users/edi/Projects"] | |
| trust_level = "trusted" | |
| [projects."/Users/edi/Projects/eunify"] | |
| trust_level = "trusted" | |
| [tui] | |
| status_line = ["model-name", "current-dir", "git-branch", "context-used", "session-id"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment