|
From the code I see that both |
Answered by
abetlen
May 22, 2023
Replies: 2 comments 1 reply
|
@alexeyche that's correct that the object can only process a single request at a time. llama.cpp doesn't yet support batching requests so there's no real way to make this possible until that happens. The alternative "solution" that I'm working on is to allow users to load multiple models at the same time, but this will take twice the amount of RAM and likely be quite slow. |
1 reply
Answer selected by
alexeyche
|
I'd love to see the ability for simultaneous requests! |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@alexeyche that's correct that the object can only process a single request at a time. llama.cpp doesn't yet support batching requests so there's no real way to make this possible until that happens. The alternative "solution" that I'm working on is to allow users to load multiple models at the same time, but this will take twice the amount of RAM and likely be quite slow.