feat: expose aggregate token usage at turn completion - #68
Open
shaohaozhi286 wants to merge 1 commit into
Open
shaohaozhi286 wants to merge 1 commit into
shaohaozhi286 wants to merge 1 commit into
Conversation
shaohaozhi286
force-pushed
the
feat/acemodel-turn-usage-api
branch
from
September 21, 2026 10:09
e5aab22 to
7e801e4
Compare
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
turn_idon terminalbusy_changedanddonesession API eventsusageandmodel_step_finisheventshas_data: falsewhile retaining estimated counts and complete context breakdownsAPI shape
{ "type": "done", "payload": { "outcome": "completed", "turn_id": "...", "usage": { "prompt_tokens": 44100, "completion_tokens": 2100, "total_tokens": 46200, "cache_read_tokens": 32000, "cache_write_tokens": 0, "reasoning_tokens": 500, "has_data": true } } }Terminal
usageis a whole-turn summary, not another delta to add to the preceding per-step usage events.Verification
npx --yes @fission-ai/openspec@1.12.0 validate expose-turn-token-usage --strictbash scripts/code_quality_check.shgit diff --checkPer request, no C++ compilation/build was run locally; CI should execute the added unit tests.