Make chatbot::query_chat compute intensive#25
Open
willcrichton wants to merge 1 commit into
Open
Conversation
1e014cb to
c59dde2
Compare
1199f69 to
c6d5975
Compare
c6d5975 to
b5c15ca
Compare
7d8a212 to
b876cf9
Compare
b5c15ca to
b0f314c
Compare
b876cf9 to
fb0a734
Compare
b0f314c to
ceb24ea
Compare
ffda1f7 to
e67733c
Compare
0b12094 to
62c4463
Compare
62c4463 to
6c7dd80
Compare
e67733c to
4f469e5
Compare
6c7dd80 to
4bcd14e
Compare
4f469e5 to
b4a7777
Compare
b4a7777 to
79d404e
Compare
4bcd14e to
8106819
Compare
79d404e to
6486a75
Compare
8f1393b to
9d99053
Compare
6486a75 to
aa567e6
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.
"Improvements" to our "language model" have required it to become more computationally intensive. This is represented by
tokio::time::sleep(a non-blocking operation) changing intostd::thread::sleep(a blocking operation).