We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For our client side rate limit control, we need to estimate the number of tokens that will be used by each request we send to an LLM completions API.
Right now we are naively estimating that the output of the call will use (max_output_tokens // 4).
Instead we should implement a moving average based on the responses we have gotten so far.
This will help with leaving extra throughput on the table as discovered when looking into #223.
The text was updated successfully, but these errors were encountered:
Closed as duplicate to #206
Sorry, something went wrong.
CharlieJCJ
No branches or pull requests
For our client side rate limit control, we need to estimate the number of tokens that will be used by each request we send to an LLM completions API.
Right now we are naively estimating that the output of the call will use (max_output_tokens // 4).
Instead we should implement a moving average based on the responses we have gotten so far.
This will help with leaving extra throughput on the table as discovered when looking into #223.
The text was updated successfully, but these errors were encountered: