mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-10 11:54:52 +00:00
fix(router): fix truncation
This commit is contained in:
parent
7a1ba58557
commit
cea9ae48c8
@ -308,8 +308,8 @@ fn prepare_input(
|
|||||||
|
|
||||||
// Optionally truncate
|
// Optionally truncate
|
||||||
let (inputs, input_length) = match truncate {
|
let (inputs, input_length) = match truncate {
|
||||||
// Truncate is some and > encoding length
|
// Truncate is some and < encoding length
|
||||||
Some(truncate) if truncate > encoding.len() => {
|
Some(truncate) if truncate < encoding.len() => {
|
||||||
// truncate encoding and decode new inputs
|
// truncate encoding and decode new inputs
|
||||||
encoding.truncate(truncate, 0, TruncationDirection::Left);
|
encoding.truncate(truncate, 0, TruncationDirection::Left);
|
||||||
let inputs = tokenizer
|
let inputs = tokenizer
|
||||||
|
Loading…
Reference in New Issue
Block a user