fix(router): fix truncation

This commit is contained in:
OlivierDehaene 2023-04-17 16:50:51 +02:00
parent 7a1ba58557
commit cea9ae48c8

View File

@ -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