mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-06-19 15:52:08 +00:00
Fix tests mod in queue.rs
This commit is contained in:
parent
f934d01f74
commit
9895569c8b
@ -219,9 +219,10 @@ enum QueueCommand {
|
|||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use text_generation_client::{NextTokenChooserParameters, StoppingCriteriaParameters};
|
use text_generation_client::NextTokenChooserParameters;
|
||||||
use tokio::sync::{mpsc, Semaphore};
|
use tokio::sync::{mpsc, Semaphore};
|
||||||
use tracing::info_span;
|
use tracing::info_span;
|
||||||
|
use crate::validation::StoppingCriteria;
|
||||||
|
|
||||||
fn default_entry() -> Entry {
|
fn default_entry() -> Entry {
|
||||||
let semaphore = Arc::new(Semaphore::new(1));
|
let semaphore = Arc::new(Semaphore::new(1));
|
||||||
@ -241,9 +242,10 @@ mod tests {
|
|||||||
repetition_penalty: 0.0,
|
repetition_penalty: 0.0,
|
||||||
watermark: false,
|
watermark: false,
|
||||||
},
|
},
|
||||||
stopping_parameters: StoppingCriteriaParameters {
|
stopping_criteria: StoppingCriteria {
|
||||||
max_new_tokens: 0,
|
max_new_tokens: 0,
|
||||||
stop_sequences: vec![],
|
stop_sequences: vec![],
|
||||||
|
deadline: None,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
response_tx,
|
response_tx,
|
||||||
|
Loading…
Reference in New Issue
Block a user