docs(custom-drivers): document countTokens() on custom text handlers - #61
Merged
Conversation
TextHandler requires countTokens() (added in v3.6.0), but the custom-drivers guide's example and interface table omitted it, so a handler built from the docs failed to load. Document countTokens() with a drop-in implementation via the CountsTokens trait (heuristic estimate when a provider has no native count endpoint), and add it to the interface table. Update the sandbox custom-driver example to match. The feature itself is correct (all first-party handlers implement it; live token-counting verified 22/22) — this is a docs gap only.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
TextHandlerrequirescountTokens()(added in v3.6.0), but the custom-drivers guide's example and interface table omitted it — a handler built from the docs failed to load. DocumentscountTokens()with a drop-in implementation via theCountsTokenstrait (heuristic estimate when a provider has no native count endpoint), adds it to the interface table, and updates the sandbox custom-driver example to match.The feature itself is correct (all first-party handlers implement it; live token-counting verified 22/22) — docs gap only.