updated context shift error to ERROR_TYPE_INVALID_REQUEST
This commit is contained in:
parent
9880e3a069
commit
4af076b494
1 changed files with 1 additions and 1 deletions
|
@ -1949,7 +1949,7 @@ struct server_context {
|
|||
// context shift is disabled and prompt is too large - discard it
|
||||
if (!params.ctx_shift && (slot.n_prompt_tokens > slot.n_ctx) ){
|
||||
slot.release();
|
||||
send_error(slot, "Input is too large to process. Either enable context shift or increase the context length.", ERROR_TYPE_SERVER);
|
||||
send_error(slot, "Input is too large to process. Either enable context shift or increase the context length.", ERROR_TYPE_INVALID_REQUEST);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue