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