Register and share your invite link to earn from video plays and referrals.

尾原@メタスキル発即三刷2.4万部!
@kazobara
💡ネットは人の笑顔と自分らしさを加速するもの⚡を信条にシンガポール、バリ島から世界中を放浪。テックが何をもたらすかの見方、人の成長の効率的ハックを中心に投稿Google,McKinsey,楽天執行役員歴任 詳細プロフ、講演コンサル取材など仕事・講演依頼は
756 Following    61.3K Followers
Here is how to enable a 1M-token context window in Codex for GPT-5.6 Sol. Even though we have tuned the context limit in Codex to be set optimally when it comes to performance and cost, this is a common ask, so here it is documented. A larger context window lets Codex retain more code, tool output, and conversation history before summarizing older material. You need a model that supports it. And GPT-5.6 Sol, for example, has a documented 1,050,000-token window. Open ~/.codex/config.toml and add or update these settings at the top level, before any [section] headers: ``` model = "gpt-5.6-sol" model_context_window = 1000000 model_auto_compact_token_limit = 900000 ``` The first setting selects the model. The second tells Codex to use a one-million-token context budget. The third starts automatic history compaction around 900,000 tokens, leaving some headroom. Restart Codex client and start a new session after saving. To try the configuration for a single CLI session without changing your defaults: ``` codex -m gpt-5.6-sol \ -c model_context_window=1000000 \ -c model_auto_compact_token_limit=900000 ``` Have fun, but also know that we tuned the default carefully!
Show more
0
1K
14.9K
1.2K
Forward to community