16 ms·
I believe this can be configured in Claude Code via the following environment variable: ANTHROPIC_BETAS="context-1m-2025-08-07" claude
by varyherb 1y ago
I believe this can be configured in Claude Code via the following environment variable:
ANTHROPIC_BETAS="context-1m-2025-08-07" claude
- falcor84 1y agoHave you tested it? I see that this env var isn't specified in their docs https://docs.anthropic.com/en/docs/claude-code/settings#environment-variables https://docs.anthropic.com/en/docs/claude-code/settings#envi...
- bazhand 1y agoAdd these settings to your `.claude/settings.json`: ```json { "env": { "ANTHROPIC_CUSTOM_HEADERS": {"anthropic-beta": "context-1m-2025-08-07"}, "ANTHROPIC_MODEL": "claude-sonnet-4-20250514", "CLAUDE_CODE_MAX_OUTPUT_TOKENS": 8192 } } ```
- varyherb 1y agoYup! Claude Code has a lot of undocumented configuration. Once I saw the beta header value in their docs [1], I tried to see in their source code if there was anyway to specify this flag via env var config. Their source code is already on your computer, just gotta dig through the minified JS :) Try: `cat $(which claude) | grep ANTHROPIC_BETAS` Sibling comment's approach with the other (documented) env var works too. [1] https://docs.anthropic.com/en/docs/build-with-claude/context-windows#1m-token-context-window https://docs.anthropic.com/en/docs/build-with-claude/context...
- anonym29 1y agoTested this morning. Worked wonderfully, except ran into output issues. Attempted to patched the minified Claude file's CLAUDE_CODE_MAX_OUTPUT_TOKENS hard limit of 32000 on Sonnet to 64000, which worked, and I was able to generate outputs above 32000 tokens, but this coincided with a breakage of the 1m context window for me. Still testing and playing around with this, but this may be getting patched?