docs: document which prompts trigger headroom compression#560
Open
devin-ai-integration[bot] wants to merge 2 commits into
Open
docs: document which prompts trigger headroom compression#560devin-ai-integration[bot] wants to merge 2 commits into
devin-ai-integration[bot] wants to merge 2 commits into
Conversation
Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…cript Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Documents which prompts actually trigger Headroom compression, prompted by confusion in #docs-feedback where a tester saw zero savings from a 21-token prompt.
Adds a terse "What triggers compression" section to the Headroom doc: compression only fires on large machine-generated payloads carried as
toolmessages (JSON API responses, DB dumps, large file reads / RAG chunks), engages around a thousand-plus tokens, and never touchesuser/system(unlessHEADROOM_COMPRESS_USER_MESSAGES=1) orcache_control-marked messages.Adds a runnable
static/scripts/headroom_compression_check.sh(linked from the doc, served at/scripts/headroom_compression_check.sh). It calls/v1/compressdirectly (the same call the guardrail makes, no LLM key needed) with a tiny prompt and a largetoolresult and printstokens_before/after/saved+transforms_applied:Validated against a local Headroom 0.28.0 (matching the demo's version) and earlier against
headroom-compress.onrender.comdirectly (x-headroom-tokens-savedof 1189 on a tabular result and 3881 on a JSON result). The script deliberately uses the JSON payload as its "compresses" case because that path is deterministic; the tabular router fires conditionally, so the doc no longer asserts a specific transform or ratio.Docusaurus
npm run buildpasses; the script asset is emitted tobuild/scripts/and the only broken-anchor warnings are pre-existing release-notes pages.Link to Devin session: https://app.devin.ai/sessions/fe103b990cdf49848eea092cadaf61f3
Requested by: @krrish-berri-2