mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-11 20:34:54 +00:00
python now uses v3
This commit is contained in:
parent
188c396b88
commit
b9dffbd512
@ -1,8 +1,9 @@
|
|||||||
use std::time::{Duration, Instant};
|
use std::time::{Duration, Instant};
|
||||||
use text_generation_client::{
|
use text_generation_client::v2::{
|
||||||
Batch, CachedBatch, Chunk, ClientError, Input, NextTokenChooserParameters, Request,
|
Batch, CachedBatch, NextTokenChooserParameters, Request, ShardedClient,
|
||||||
ShardedClient, StoppingCriteriaParameters,
|
StoppingCriteriaParameters,
|
||||||
};
|
};
|
||||||
|
use text_generation_client::ClientError;
|
||||||
use tokenizers::{Tokenizer, TruncationDirection};
|
use tokenizers::{Tokenizer, TruncationDirection};
|
||||||
use tokio::sync::{broadcast, mpsc};
|
use tokio::sync::{broadcast, mpsc};
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ use crate::app::App;
|
|||||||
use crate::event::Event;
|
use crate::event::Event;
|
||||||
use crossterm::ExecutableCommand;
|
use crossterm::ExecutableCommand;
|
||||||
use std::io;
|
use std::io;
|
||||||
use text_generation_client::{GrammarType, NextTokenChooserParameters, ShardedClient};
|
use text_generation_client::v2::{GrammarType, NextTokenChooserParameters, ShardedClient};
|
||||||
use tokenizers::Tokenizer;
|
use tokenizers::Tokenizer;
|
||||||
use tokio::sync::{broadcast, mpsc};
|
use tokio::sync::{broadcast, mpsc};
|
||||||
use tui::backend::CrosstermBackend;
|
use tui::backend::CrosstermBackend;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
/// and: https://github.com/orhun/rust-tui-template
|
/// and: https://github.com/orhun/rust-tui-template
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use std::path::Path;
|
use std::path::Path;
|
||||||
use text_generation_client::ShardedClient;
|
use text_generation_client::v2::ShardedClient;
|
||||||
use tokenizers::{FromPretrainedParameters, Tokenizer};
|
use tokenizers::{FromPretrainedParameters, Tokenizer};
|
||||||
use tracing_subscriber::layer::SubscriberExt;
|
use tracing_subscriber::layer::SubscriberExt;
|
||||||
use tracing_subscriber::util::SubscriberInitExt;
|
use tracing_subscriber::util::SubscriberInitExt;
|
||||||
|
@ -47,9 +47,7 @@ impl From<Status> for ClientError {
|
|||||||
|
|
||||||
impl From<transport::Error> for ClientError {
|
impl From<transport::Error> for ClientError {
|
||||||
fn from(err: transport::Error) -> Self {
|
fn from(err: transport::Error) -> Self {
|
||||||
let err = Self::Connection(err.to_string());
|
Self::Connection(err.to_string())
|
||||||
tracing::error!("{err}");
|
|
||||||
err
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,36 +1,35 @@
|
|||||||
mod health;
|
mod health;
|
||||||
pub(crate) mod v2;
|
pub(crate) mod v2;
|
||||||
// pub(crate) mod v3;
|
pub(crate) mod v3;
|
||||||
|
|
||||||
pub(crate) use health::HealthCheck;
|
pub(crate) use health::HealthCheck;
|
||||||
|
|
||||||
use crate::validation::{Validation, ValidationError, ValidGenerateRequest};
|
use crate::validation::{ValidGenerateRequest, Validation, ValidationError};
|
||||||
use crate::{
|
use crate::{
|
||||||
ChatTemplateInputs, ChatTemplateVersions, FinishReason, GenerateRequest,
|
ChatTemplateInputs, ChatTemplateVersions, FinishReason, GenerateRequest, HubProcessorConfig,
|
||||||
HubProcessorConfig, HubTokenizerConfig, Message, MessageChunk,
|
HubTokenizerConfig, Message, MessageChunk, PrefillToken, Text, TextMessage, Token,
|
||||||
PrefillToken, Text, TextMessage, Token,
|
|
||||||
};
|
};
|
||||||
use crate::{FunctionRef, FunctionsMap, GrammarType, Properties, Tool, ToolType, Tools};
|
use crate::{FunctionRef, FunctionsMap, GrammarType, Properties, Tool, ToolType, Tools};
|
||||||
use futures::future::try_join_all;
|
use futures::future::try_join_all;
|
||||||
use minijinja::{Environment, ErrorKind, Template};
|
use minijinja::{Environment, ErrorKind, Template};
|
||||||
use serde_json::{json, Map, Value};
|
use serde_json::{json, Map, Value};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::sync::{
|
use std::sync::Arc;
|
||||||
Arc,
|
|
||||||
};
|
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
use tokio::sync::{OwnedSemaphorePermit, Semaphore, TryAcquireError};
|
use tokio::sync::{OwnedSemaphorePermit, Semaphore, TryAcquireError};
|
||||||
use tokio::time::Instant;
|
use tokio::time::Instant;
|
||||||
use tokio_stream::wrappers::UnboundedReceiverStream;
|
use tokio_stream::wrappers::UnboundedReceiverStream;
|
||||||
use tokio_stream::StreamExt;
|
use tokio_stream::StreamExt;
|
||||||
use tracing::{instrument};
|
use tracing::instrument;
|
||||||
|
|
||||||
|
|
||||||
pub(crate) trait Scheduler {
|
pub(crate) trait Scheduler {
|
||||||
fn schedule(&self, request: ValidGenerateRequest, permit: OwnedSemaphorePermit) -> Result<GenerateStreamResponse, InferError>;
|
fn schedule(
|
||||||
|
&self,
|
||||||
|
request: ValidGenerateRequest,
|
||||||
|
permit: OwnedSemaphorePermit,
|
||||||
|
) -> Result<GenerateStreamResponse, InferError>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Inference struct
|
/// Inference struct
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Infer {
|
pub struct Infer {
|
||||||
@ -44,8 +43,6 @@ pub struct Infer {
|
|||||||
limit_concurrent_requests: Arc<Semaphore>,
|
limit_concurrent_requests: Arc<Semaphore>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
impl Infer {
|
impl Infer {
|
||||||
#[allow(clippy::too_many_arguments)]
|
#[allow(clippy::too_many_arguments)]
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
@ -462,8 +459,6 @@ pub(crate) struct GeneratedText {
|
|||||||
pub(crate) seed: Option<u64>,
|
pub(crate) seed: Option<u64>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub(crate) enum InferStreamResponse {
|
pub(crate) enum InferStreamResponse {
|
||||||
// Optional first message
|
// Optional first message
|
||||||
@ -525,4 +520,3 @@ impl InferError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
mod scheduler;
|
|
||||||
mod queue;
|
mod queue;
|
||||||
|
mod scheduler;
|
||||||
|
|
||||||
pub(crate) use scheduler::SchedulerV2;
|
pub(crate) use scheduler::SchedulerV2;
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
use crate::infer::{InferError, InferStreamResponse};
|
use crate::infer::{InferError, InferStreamResponse};
|
||||||
use crate::validation::{ValidGenerateRequest, ValidGrammar, ValidParameters, ValidStoppingParameters};
|
use crate::validation::{
|
||||||
|
ValidGenerateRequest, ValidGrammar, ValidParameters, ValidStoppingParameters,
|
||||||
|
};
|
||||||
use nohash_hasher::{BuildNoHashHasher, IntMap};
|
use nohash_hasher::{BuildNoHashHasher, IntMap};
|
||||||
use std::cmp::min;
|
use std::cmp::min;
|
||||||
use std::collections::VecDeque;
|
use std::collections::VecDeque;
|
||||||
@ -400,9 +402,6 @@ impl From<ValidStoppingParameters> for StoppingCriteriaParameters {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use text_generation_client::{
|
|
||||||
GrammarType as ProtoGrammarType, NextTokenChooserParameters, StoppingCriteriaParameters,
|
|
||||||
};
|
|
||||||
use tracing::info_span;
|
use tracing::info_span;
|
||||||
|
|
||||||
fn default_entry() -> (
|
fn default_entry() -> (
|
||||||
@ -417,7 +416,7 @@ mod tests {
|
|||||||
input_length: 0,
|
input_length: 0,
|
||||||
truncate: 0,
|
truncate: 0,
|
||||||
decoder_input_details: false,
|
decoder_input_details: false,
|
||||||
parameters: NextTokenChooserParameters {
|
parameters: ValidParameters {
|
||||||
temperature: 0.0,
|
temperature: 0.0,
|
||||||
top_k: 0,
|
top_k: 0,
|
||||||
top_p: 0.0,
|
top_p: 0.0,
|
||||||
@ -427,10 +426,9 @@ mod tests {
|
|||||||
repetition_penalty: 0.0,
|
repetition_penalty: 0.0,
|
||||||
frequency_penalty: 0.0,
|
frequency_penalty: 0.0,
|
||||||
watermark: false,
|
watermark: false,
|
||||||
grammar: String::new(),
|
grammar: None,
|
||||||
grammar_type: ProtoGrammarType::None as i32,
|
|
||||||
},
|
},
|
||||||
stopping_parameters: StoppingCriteriaParameters {
|
stopping_parameters: ValidStoppingParameters {
|
||||||
ignore_eos_token: false,
|
ignore_eos_token: false,
|
||||||
max_new_tokens: 1,
|
max_new_tokens: 1,
|
||||||
stop_sequences: vec![],
|
stop_sequences: vec![],
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
/// Batching and inference logic
|
/// Batching and inference logic
|
||||||
|
use crate::infer::v2::queue::{Entry, Queue};
|
||||||
use crate::infer::v2::queue::{Queue, Entry};
|
use crate::infer::{
|
||||||
|
GenerateStreamResponse, GeneratedText, InferError, InferStreamResponse, Scheduler,
|
||||||
|
};
|
||||||
|
use crate::validation::ValidGenerateRequest;
|
||||||
use crate::{FinishReason, PrefillToken, Token};
|
use crate::{FinishReason, PrefillToken, Token};
|
||||||
use nohash_hasher::IntMap;
|
use nohash_hasher::IntMap;
|
||||||
use std::sync::{
|
use std::sync::{
|
||||||
@ -8,14 +11,12 @@ use std::sync::{
|
|||||||
Arc,
|
Arc,
|
||||||
};
|
};
|
||||||
use text_generation_client::v2::{Batch, CachedBatch, Generation, ShardedClient};
|
use text_generation_client::v2::{Batch, CachedBatch, Generation, ShardedClient};
|
||||||
use text_generation_client::{ClientError};
|
use text_generation_client::ClientError;
|
||||||
use tokio::sync::mpsc::error::SendError;
|
use tokio::sync::mpsc::error::SendError;
|
||||||
use tokio::sync::{mpsc, Notify, OwnedSemaphorePermit};
|
use tokio::sync::{mpsc, Notify, OwnedSemaphorePermit};
|
||||||
use tokio::time::Instant;
|
use tokio::time::Instant;
|
||||||
use tokio_stream::wrappers::UnboundedReceiverStream;
|
use tokio_stream::wrappers::UnboundedReceiverStream;
|
||||||
use tracing::{info_span, instrument, Instrument, Span};
|
use tracing::{info_span, instrument, Instrument, Span};
|
||||||
use crate::infer::{GeneratedText, GenerateStreamResponse, InferError, InferStreamResponse, Scheduler};
|
|
||||||
use crate::validation::ValidGenerateRequest;
|
|
||||||
|
|
||||||
pub(crate) struct SchedulerV2 {
|
pub(crate) struct SchedulerV2 {
|
||||||
/// Request queue
|
/// Request queue
|
||||||
@ -25,6 +26,7 @@ pub(crate) struct SchedulerV2 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl SchedulerV2 {
|
impl SchedulerV2 {
|
||||||
|
#[allow(clippy::too_many_arguments)]
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
client: ShardedClient,
|
client: ShardedClient,
|
||||||
waiting_served_ratio: f32,
|
waiting_served_ratio: f32,
|
||||||
@ -55,14 +57,18 @@ impl SchedulerV2 {
|
|||||||
|
|
||||||
Self {
|
Self {
|
||||||
queue,
|
queue,
|
||||||
batching_task_notifier
|
batching_task_notifier,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Scheduler for SchedulerV2 {
|
impl Scheduler for SchedulerV2 {
|
||||||
#[instrument(skip_all)]
|
#[instrument(skip_all)]
|
||||||
fn schedule(&self, request: ValidGenerateRequest, permit: OwnedSemaphorePermit) -> Result<GenerateStreamResponse, InferError> {
|
fn schedule(
|
||||||
|
&self,
|
||||||
|
request: ValidGenerateRequest,
|
||||||
|
permit: OwnedSemaphorePermit,
|
||||||
|
) -> Result<GenerateStreamResponse, InferError> {
|
||||||
// MPSC channel to communicate with the background batching task
|
// MPSC channel to communicate with the background batching task
|
||||||
let (response_tx, response_rx) = mpsc::unbounded_channel();
|
let (response_tx, response_rx) = mpsc::unbounded_channel();
|
||||||
let input_length = request.input_length;
|
let input_length = request.input_length;
|
||||||
@ -90,7 +96,6 @@ impl Scheduler for SchedulerV2 {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/// Batching logic
|
/// Batching logic
|
||||||
/// Will be launched in a background Tokio task
|
/// Will be launched in a background Tokio task
|
||||||
///
|
///
|
||||||
@ -381,8 +386,8 @@ fn send_responses(
|
|||||||
let prefill_tokens = prefill_tokens
|
let prefill_tokens = prefill_tokens
|
||||||
.ids
|
.ids
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.zip(prefill_tokens.logprobs.into_iter())
|
.zip(prefill_tokens.logprobs)
|
||||||
.zip(prefill_tokens.texts.into_iter())
|
.zip(prefill_tokens.texts)
|
||||||
.map(|((id, logprob), text)| PrefillToken { id, text, logprob })
|
.map(|((id, logprob), text)| PrefillToken { id, text, logprob })
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
@ -473,7 +478,8 @@ fn send_errors(error: ClientError, entries: &mut IntMap<u64, Entry>) {
|
|||||||
|
|
||||||
impl From<text_generation_client::v2::GeneratedText> for GeneratedText {
|
impl From<text_generation_client::v2::GeneratedText> for GeneratedText {
|
||||||
fn from(value: text_generation_client::v2::GeneratedText) -> Self {
|
fn from(value: text_generation_client::v2::GeneratedText) -> Self {
|
||||||
let v2_finish_reason = text_generation_client::v2::FinishReason::try_from(value.finish_reason).unwrap();
|
let v2_finish_reason =
|
||||||
|
text_generation_client::v2::FinishReason::try_from(value.finish_reason).unwrap();
|
||||||
let finish_reason = match v2_finish_reason {
|
let finish_reason = match v2_finish_reason {
|
||||||
text_generation_client::v2::FinishReason::Length => FinishReason::Length,
|
text_generation_client::v2::FinishReason::Length => FinishReason::Length,
|
||||||
text_generation_client::v2::FinishReason::EosToken => FinishReason::EndOfSequenceToken,
|
text_generation_client::v2::FinishReason::EosToken => FinishReason::EndOfSequenceToken,
|
||||||
@ -767,10 +773,10 @@ mod tests {
|
|||||||
content: "You are a friendly chatbot who always responds in the style of a pirate"
|
content: "You are a friendly chatbot who always responds in the style of a pirate"
|
||||||
.to_string(),
|
.to_string(),
|
||||||
}]
|
}]
|
||||||
.iter()
|
.iter()
|
||||||
.chain(&example_chat)
|
.chain(&example_chat)
|
||||||
.cloned()
|
.cloned()
|
||||||
.collect::<Vec<_>>();
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
let test_default_templates = vec![
|
let test_default_templates = vec![
|
||||||
ChatTemplateTestItem {
|
ChatTemplateTestItem {
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
mod infer;
|
|
||||||
mod queue;
|
mod queue;
|
||||||
|
mod scheduler;
|
||||||
|
|
||||||
pub(crate) use infer::{Infer, InferError, InferStreamResponse, InferResponse, ToolGrammar};
|
pub(crate) use scheduler::SchedulerV3;
|
||||||
pub(crate) use queue::{Entry, Queue};
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
use crate::infer::v3::{InferError, InferStreamResponse};
|
use crate::infer::{InferError, InferStreamResponse};
|
||||||
use crate::validation::{
|
use crate::validation::{
|
||||||
ValidGenerateRequest, ValidGrammar, ValidParameters, ValidStoppingParameters,
|
ValidGenerateRequest, ValidGrammar, ValidParameters, ValidStoppingParameters,
|
||||||
};
|
};
|
||||||
@ -58,7 +58,6 @@ impl Queue {
|
|||||||
Self { queue_sender }
|
Self { queue_sender }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Append an entry to the queue
|
|
||||||
#[instrument(skip_all)]
|
#[instrument(skip_all)]
|
||||||
pub(crate) fn append(&self, entry: Entry) {
|
pub(crate) fn append(&self, entry: Entry) {
|
||||||
// Send append command to the background task managing the state
|
// Send append command to the background task managing the state
|
||||||
@ -397,9 +396,6 @@ impl From<ValidStoppingParameters> for StoppingCriteriaParameters {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::*;
|
use super::*;
|
||||||
use text_generation_client::{
|
|
||||||
GrammarType as ProtoGrammarType, NextTokenChooserParameters, StoppingCriteriaParameters,
|
|
||||||
};
|
|
||||||
use tracing::info_span;
|
use tracing::info_span;
|
||||||
|
|
||||||
fn default_entry() -> (
|
fn default_entry() -> (
|
||||||
@ -414,7 +410,7 @@ mod tests {
|
|||||||
input_length: 0,
|
input_length: 0,
|
||||||
truncate: 0,
|
truncate: 0,
|
||||||
decoder_input_details: false,
|
decoder_input_details: false,
|
||||||
parameters: NextTokenChooserParameters {
|
parameters: ValidParameters {
|
||||||
temperature: 0.0,
|
temperature: 0.0,
|
||||||
top_k: 0,
|
top_k: 0,
|
||||||
top_p: 0.0,
|
top_p: 0.0,
|
||||||
@ -424,10 +420,9 @@ mod tests {
|
|||||||
repetition_penalty: 0.0,
|
repetition_penalty: 0.0,
|
||||||
frequency_penalty: 0.0,
|
frequency_penalty: 0.0,
|
||||||
watermark: false,
|
watermark: false,
|
||||||
grammar: String::new(),
|
grammar: None,
|
||||||
grammar_type: ProtoGrammarType::None as i32,
|
|
||||||
},
|
},
|
||||||
stopping_parameters: StoppingCriteriaParameters {
|
stopping_parameters: ValidStoppingParameters {
|
||||||
ignore_eos_token: false,
|
ignore_eos_token: false,
|
||||||
max_new_tokens: 1,
|
max_new_tokens: 1,
|
||||||
stop_sequences: vec![],
|
stop_sequences: vec![],
|
||||||
|
@ -1,80 +1,46 @@
|
|||||||
/// Batching and inference logic
|
/// Batching and inference logic
|
||||||
|
use crate::infer::v3::queue::{Entry, Queue};
|
||||||
use crate::infer::v3::{Queue, Entry};
|
use crate::infer::{
|
||||||
use crate::validation::{Validation, ValidationError};
|
GenerateStreamResponse, GeneratedText, InferError, InferStreamResponse, Scheduler,
|
||||||
use crate::{
|
|
||||||
ChatTemplateInputs, ChatTemplateVersions, FinishReason, GenerateRequest,
|
|
||||||
HubProcessorConfig, HubTokenizerConfig, Message, MessageChunk,
|
|
||||||
PrefillToken, Text, TextMessage, Token,
|
|
||||||
};
|
};
|
||||||
use crate::{FunctionRef, FunctionsMap, GrammarType, Properties, Tool, ToolType, Tools};
|
use crate::validation::ValidGenerateRequest;
|
||||||
use futures::future::try_join_all;
|
use crate::{FinishReason, PrefillToken, Token};
|
||||||
use minijinja::{Environment, ErrorKind, Template};
|
|
||||||
use nohash_hasher::IntMap;
|
use nohash_hasher::IntMap;
|
||||||
use serde_json::{json, Map, Value};
|
|
||||||
use std::collections::HashMap;
|
|
||||||
use std::sync::{
|
use std::sync::{
|
||||||
atomic::{AtomicBool, Ordering},
|
atomic::{AtomicBool, Ordering},
|
||||||
Arc,
|
Arc,
|
||||||
};
|
};
|
||||||
use text_generation_client::v3::{Batch, CachedBatch, Generation, ShardedClient};
|
use text_generation_client::v3::{Batch, CachedBatch, Generation, ShardedClient};
|
||||||
use text_generation_client::{v3, ClientError};
|
use text_generation_client::ClientError;
|
||||||
use thiserror::Error;
|
|
||||||
use tokio::sync::mpsc::error::SendError;
|
use tokio::sync::mpsc::error::SendError;
|
||||||
use tokio::sync::{mpsc, Notify, OwnedSemaphorePermit, Semaphore, TryAcquireError};
|
use tokio::sync::{mpsc, Notify, OwnedSemaphorePermit};
|
||||||
use tokio::time::Instant;
|
use tokio::time::Instant;
|
||||||
use tokio_stream::wrappers::UnboundedReceiverStream;
|
use tokio_stream::wrappers::UnboundedReceiverStream;
|
||||||
use tokio_stream::StreamExt;
|
|
||||||
use tracing::{info_span, instrument, Instrument, Span};
|
use tracing::{info_span, instrument, Instrument, Span};
|
||||||
|
|
||||||
/// Inference struct
|
pub(crate) struct SchedulerV3 {
|
||||||
#[derive(Clone)]
|
|
||||||
pub struct Infer {
|
|
||||||
/// Validation
|
|
||||||
validation: Validation,
|
|
||||||
/// Request queue
|
/// Request queue
|
||||||
queue: Queue,
|
queue: Queue,
|
||||||
/// Shared state
|
/// Notify batcher on queue appends
|
||||||
shared: Arc<Shared>,
|
batching_task_notifier: Arc<Notify>,
|
||||||
/// Chat template
|
|
||||||
chat_template: Option<ChatTemplate>,
|
|
||||||
/// Inference limit
|
|
||||||
limit_concurrent_requests: Arc<Semaphore>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Infer shared state
|
impl SchedulerV3 {
|
||||||
struct Shared {
|
|
||||||
/// Batching background Tokio task notifier
|
|
||||||
batching_task: Notify,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Raise a exception (custom function) used in the chat templates
|
|
||||||
fn raise_exception(err_text: String) -> Result<String, minijinja::Error> {
|
|
||||||
Err(minijinja::Error::new(ErrorKind::SyntaxError, err_text))
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Infer {
|
|
||||||
#[allow(clippy::too_many_arguments)]
|
#[allow(clippy::too_many_arguments)]
|
||||||
pub(crate) fn new(
|
pub(crate) fn new(
|
||||||
client: ShardedClient,
|
client: ShardedClient,
|
||||||
validation: Validation,
|
|
||||||
waiting_served_ratio: f32,
|
waiting_served_ratio: f32,
|
||||||
max_batch_prefill_tokens: u32,
|
max_batch_prefill_tokens: u32,
|
||||||
max_batch_total_tokens: u32,
|
max_batch_total_tokens: u32,
|
||||||
max_waiting_tokens: usize,
|
max_waiting_tokens: usize,
|
||||||
max_batch_size: Option<usize>,
|
max_batch_size: Option<usize>,
|
||||||
max_concurrent_requests: usize,
|
|
||||||
requires_padding: bool,
|
requires_padding: bool,
|
||||||
window_size: Option<u32>,
|
window_size: Option<u32>,
|
||||||
speculate: u32,
|
speculate: u32,
|
||||||
generation_health: Arc<AtomicBool>,
|
generation_health: Arc<AtomicBool>,
|
||||||
tokenizer_config: HubTokenizerConfig,
|
|
||||||
processor_config: HubProcessorConfig,
|
|
||||||
) -> Self {
|
) -> Self {
|
||||||
let queue = Queue::new(requires_padding, 16, window_size, speculate);
|
let queue = Queue::new(requires_padding, 16, window_size, speculate);
|
||||||
let shared = Arc::new(Shared {
|
let batching_task_notifier = Arc::new(Notify::new());
|
||||||
batching_task: Notify::new(),
|
|
||||||
});
|
|
||||||
|
|
||||||
// Spawn batching background task that contains all the inference logic
|
// Spawn batching background task that contains all the inference logic
|
||||||
tokio::spawn(batching_task(
|
tokio::spawn(batching_task(
|
||||||
@ -85,72 +51,31 @@ impl Infer {
|
|||||||
max_waiting_tokens,
|
max_waiting_tokens,
|
||||||
max_batch_size,
|
max_batch_size,
|
||||||
queue.clone(),
|
queue.clone(),
|
||||||
shared.clone(),
|
batching_task_notifier.clone(),
|
||||||
generation_health,
|
generation_health,
|
||||||
));
|
));
|
||||||
|
|
||||||
let chat_template = tokenizer_config
|
|
||||||
.chat_template
|
|
||||||
.or(processor_config.chat_template)
|
|
||||||
.and_then(|t| match t {
|
|
||||||
ChatTemplateVersions::Single(template) => Some(template),
|
|
||||||
ChatTemplateVersions::Multiple(templates) => templates
|
|
||||||
.into_iter()
|
|
||||||
.find(|t| t.name == "default")
|
|
||||||
.map(|t| t.template),
|
|
||||||
})
|
|
||||||
.map(|t| {
|
|
||||||
// .strip() is not supported in minijinja
|
|
||||||
// .capitalize() is not supported in minijinja but we can use | capitalize
|
|
||||||
let t = t
|
|
||||||
.replace(".strip()", " | trim")
|
|
||||||
.replace(".capitalize()", " | capitalize");
|
|
||||||
ChatTemplate::new(t, tokenizer_config.bos_token, tokenizer_config.eos_token)
|
|
||||||
});
|
|
||||||
|
|
||||||
// Inference limit with a semaphore
|
|
||||||
let semaphore = Arc::new(Semaphore::new(max_concurrent_requests));
|
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
validation,
|
|
||||||
queue,
|
queue,
|
||||||
shared,
|
batching_task_notifier,
|
||||||
chat_template,
|
|
||||||
limit_concurrent_requests: semaphore,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Add a new request to the queue and return a stream of InferStreamResponse
|
impl Scheduler for SchedulerV3 {
|
||||||
#[instrument(skip_all)]
|
#[instrument(skip_all)]
|
||||||
pub(crate) async fn generate_stream(
|
fn schedule(
|
||||||
&self,
|
&self,
|
||||||
request: GenerateRequest,
|
request: ValidGenerateRequest,
|
||||||
|
permit: OwnedSemaphorePermit,
|
||||||
) -> Result<GenerateStreamResponse, InferError> {
|
) -> Result<GenerateStreamResponse, InferError> {
|
||||||
// Limit concurrent requests by acquiring a permit from the semaphore
|
|
||||||
let permit = self
|
|
||||||
.clone()
|
|
||||||
.limit_concurrent_requests
|
|
||||||
.try_acquire_owned()
|
|
||||||
.map_err(|err| {
|
|
||||||
metrics::increment_counter!("tgi_request_failure", "err" => "overloaded");
|
|
||||||
tracing::error!("{err}");
|
|
||||||
err
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// Validate request
|
|
||||||
let valid_request = self.validation.validate(request).await.map_err(|err| {
|
|
||||||
metrics::increment_counter!("tgi_request_failure", "err" => "validation");
|
|
||||||
tracing::error!("{err}");
|
|
||||||
err
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// MPSC channel to communicate with the background batching task
|
// MPSC channel to communicate with the background batching task
|
||||||
let (response_tx, response_rx) = mpsc::unbounded_channel();
|
let (response_tx, response_rx) = mpsc::unbounded_channel();
|
||||||
let input_length = valid_request.input_length;
|
let input_length = request.input_length;
|
||||||
|
|
||||||
// Append the request to the queue
|
// Append the request to the queue
|
||||||
self.queue.append(Entry {
|
self.queue.append(Entry {
|
||||||
request: valid_request,
|
request,
|
||||||
response_tx,
|
response_tx,
|
||||||
span: Span::current(),
|
span: Span::current(),
|
||||||
temp_span: None,
|
temp_span: None,
|
||||||
@ -160,7 +85,7 @@ impl Infer {
|
|||||||
|
|
||||||
// Notify the background task that we have a new entry in the queue that needs
|
// Notify the background task that we have a new entry in the queue that needs
|
||||||
// to be batched
|
// to be batched
|
||||||
self.shared.batching_task.notify_one();
|
self.batching_task_notifier.notify_one();
|
||||||
|
|
||||||
// Return stream
|
// Return stream
|
||||||
Ok((
|
Ok((
|
||||||
@ -169,335 +94,6 @@ impl Infer {
|
|||||||
UnboundedReceiverStream::new(response_rx),
|
UnboundedReceiverStream::new(response_rx),
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Tokenizer the input
|
|
||||||
#[instrument(skip_all)]
|
|
||||||
pub(crate) async fn tokenize(
|
|
||||||
&self,
|
|
||||||
request: GenerateRequest,
|
|
||||||
) -> Result<Option<tokenizers::Encoding>, InferError> {
|
|
||||||
// Tokenize request
|
|
||||||
let inputs = request.inputs;
|
|
||||||
let truncate = request.parameters.truncate;
|
|
||||||
let encoding = self
|
|
||||||
.validation
|
|
||||||
.tokenize(inputs, truncate)
|
|
||||||
.await
|
|
||||||
.map_err(|err| {
|
|
||||||
tracing::error!("Tokenization {err}");
|
|
||||||
err
|
|
||||||
})?;
|
|
||||||
|
|
||||||
// Return Encoding
|
|
||||||
Ok(encoding.map(|(encoding, _)| encoding))
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Apply the chat template to the chat request
|
|
||||||
#[instrument(skip_all)]
|
|
||||||
pub(crate) fn apply_chat_template(
|
|
||||||
&self,
|
|
||||||
messages: Vec<Message>,
|
|
||||||
grammar_with_prompt: Option<(GrammarType, String)>,
|
|
||||||
) -> Result<String, InferError> {
|
|
||||||
self.chat_template
|
|
||||||
.as_ref()
|
|
||||||
.ok_or_else(|| InferError::TemplateError(ErrorKind::TemplateNotFound.into()))?
|
|
||||||
.apply(messages, grammar_with_prompt)
|
|
||||||
.map_err(|e| {
|
|
||||||
metrics::increment_counter!("tgi_request_failure", "err" => "template");
|
|
||||||
tracing::error!("{e}");
|
|
||||||
e
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Add a new request to the queue and return a InferResponse
|
|
||||||
#[instrument(skip_all)]
|
|
||||||
pub(crate) async fn generate(
|
|
||||||
&self,
|
|
||||||
request: GenerateRequest,
|
|
||||||
) -> Result<InferResponse, InferError> {
|
|
||||||
let use_top_tokens = request.parameters.top_n_tokens.is_some_and(|x| x > 0);
|
|
||||||
|
|
||||||
// Create stream and keep semaphore permit as long as generate lives
|
|
||||||
let (_permit, _input_length, mut stream) = self.generate_stream(request).await?;
|
|
||||||
|
|
||||||
// Return values
|
|
||||||
let mut result_prefill = Vec::new();
|
|
||||||
let mut result_tokens = Vec::new();
|
|
||||||
let mut result_top_tokens = Vec::new();
|
|
||||||
let mut result_generated_text = None;
|
|
||||||
let mut result_start = None;
|
|
||||||
let mut result_queued = None;
|
|
||||||
|
|
||||||
// Iterate on stream
|
|
||||||
while let Some(response) = stream.next().await {
|
|
||||||
match response? {
|
|
||||||
// Add prefill tokens
|
|
||||||
InferStreamResponse::Prefill(prefill_tokens) => {
|
|
||||||
result_prefill = prefill_tokens;
|
|
||||||
}
|
|
||||||
// Push last token
|
|
||||||
InferStreamResponse::Intermediate { token, top_tokens } => {
|
|
||||||
result_tokens.push(token);
|
|
||||||
result_top_tokens.push(top_tokens);
|
|
||||||
}
|
|
||||||
// Final message
|
|
||||||
// Set return values
|
|
||||||
InferStreamResponse::End {
|
|
||||||
token,
|
|
||||||
generated_text,
|
|
||||||
start,
|
|
||||||
queued,
|
|
||||||
top_tokens,
|
|
||||||
} => {
|
|
||||||
result_tokens.push(token);
|
|
||||||
result_top_tokens.push(top_tokens);
|
|
||||||
result_generated_text = Some(generated_text);
|
|
||||||
result_start = Some(start);
|
|
||||||
result_queued = Some(queued)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check that we received a `InferStreamResponse::End` message
|
|
||||||
if let (Some(generated_text), Some(queued), Some(start)) =
|
|
||||||
(result_generated_text, result_queued, result_start)
|
|
||||||
{
|
|
||||||
Ok(InferResponse {
|
|
||||||
prefill: result_prefill,
|
|
||||||
_input_length,
|
|
||||||
tokens: result_tokens,
|
|
||||||
generated_text,
|
|
||||||
queued,
|
|
||||||
start,
|
|
||||||
top_tokens: if use_top_tokens {
|
|
||||||
result_top_tokens
|
|
||||||
} else {
|
|
||||||
Vec::new()
|
|
||||||
},
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
let err = InferError::IncompleteGeneration;
|
|
||||||
metrics::increment_counter!("tgi_request_failure", "err" => "incomplete");
|
|
||||||
tracing::error!("{err}");
|
|
||||||
Err(err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/// Add best_of new requests to the queue and return a InferResponse of the sequence with
|
|
||||||
/// the highest log probability per token
|
|
||||||
#[instrument(skip(self, request))]
|
|
||||||
pub(crate) async fn generate_best_of(
|
|
||||||
&self,
|
|
||||||
request: GenerateRequest,
|
|
||||||
best_of: usize,
|
|
||||||
) -> Result<(InferResponse, Vec<InferResponse>), InferError> {
|
|
||||||
// validate best_of parameter separately
|
|
||||||
let best_of = self.validation.validate_best_of(best_of)?;
|
|
||||||
|
|
||||||
// create multiple generate requests
|
|
||||||
let mut infer_responses: Vec<InferResponse> =
|
|
||||||
try_join_all((0..best_of).map(|_| self.generate(request.clone()))).await?;
|
|
||||||
|
|
||||||
// get the sequence with the highest log probability per token
|
|
||||||
let mut max_index = 0;
|
|
||||||
let mut max_logprob: f32 = f32::MIN;
|
|
||||||
|
|
||||||
for (i, response) in infer_responses.iter().enumerate() {
|
|
||||||
// mean logprobs of the generated tokens
|
|
||||||
let sequence_logprob = response
|
|
||||||
.tokens
|
|
||||||
.iter()
|
|
||||||
.map(|token| token.logprob)
|
|
||||||
.sum::<f32>()
|
|
||||||
/ response.tokens.len() as f32;
|
|
||||||
|
|
||||||
// set best sequence
|
|
||||||
if sequence_logprob > max_logprob {
|
|
||||||
max_index = i;
|
|
||||||
max_logprob = sequence_logprob;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
let best_response = infer_responses.remove(max_index);
|
|
||||||
Ok((best_response, infer_responses))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
|
||||||
struct ChatTemplate {
|
|
||||||
template: Template<'static, 'static>,
|
|
||||||
bos_token: Option<String>,
|
|
||||||
eos_token: Option<String>,
|
|
||||||
use_default_tool_template: bool,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl ChatTemplate {
|
|
||||||
fn new(template: String, bos_token: Option<String>, eos_token: Option<String>) -> Self {
|
|
||||||
let mut env = Box::new(Environment::new());
|
|
||||||
let template_str = template.into_boxed_str();
|
|
||||||
env.add_function("raise_exception", raise_exception);
|
|
||||||
|
|
||||||
// check if contains the tools variable within the template
|
|
||||||
let use_default_tool_template =
|
|
||||||
!template_str.as_ref().replace(' ', "").contains("{{tools}}");
|
|
||||||
// leaking env and template_str as read-only, static resources for performance.
|
|
||||||
let template = Box::leak(env)
|
|
||||||
.template_from_str(Box::leak(template_str))
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
Self {
|
|
||||||
template,
|
|
||||||
bos_token,
|
|
||||||
eos_token,
|
|
||||||
use_default_tool_template,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn apply(
|
|
||||||
&self,
|
|
||||||
mut messages: Vec<Message>,
|
|
||||||
grammar_with_prompt: Option<(GrammarType, String)>,
|
|
||||||
) -> Result<String, InferError> {
|
|
||||||
if self.use_default_tool_template {
|
|
||||||
if let Some(last_message) = messages.last_mut() {
|
|
||||||
if let Some((GrammarType::Json(tools), tool_prompt)) = grammar_with_prompt {
|
|
||||||
last_message.content.push(MessageChunk::Text(Text {
|
|
||||||
text: format!("\n---\n{}\n{}", tool_prompt, tools),
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let messages: Vec<TextMessage> = messages.into_iter().map(|c| c.into()).collect();
|
|
||||||
|
|
||||||
self.template
|
|
||||||
.render(ChatTemplateInputs {
|
|
||||||
messages,
|
|
||||||
bos_token: self.bos_token.as_deref(),
|
|
||||||
eos_token: self.eos_token.as_deref(),
|
|
||||||
add_generation_prompt: true,
|
|
||||||
tools: None,
|
|
||||||
tools_prompt: None,
|
|
||||||
})
|
|
||||||
.map_err(InferError::TemplateError)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct ToolGrammar {}
|
|
||||||
|
|
||||||
impl ToolGrammar {
|
|
||||||
pub fn apply(
|
|
||||||
tools: Option<Vec<Tool>>,
|
|
||||||
tool_choice: Option<ToolType>,
|
|
||||||
) -> Result<Option<Tools>, InferError> {
|
|
||||||
if let Some((req_tools, tool_choice)) = tools.zip(tool_choice) {
|
|
||||||
// let tool_prompt = tool_prompt.unwrap_or_default();
|
|
||||||
let tools_to_use = match tool_choice {
|
|
||||||
ToolType::FunctionName(name) => {
|
|
||||||
vec![req_tools
|
|
||||||
.iter()
|
|
||||||
.find(|tool| tool.function.name == *name)
|
|
||||||
.unwrap_or_else(|| panic!("Tool with name {} not found", name))
|
|
||||||
.clone()]
|
|
||||||
}
|
|
||||||
ToolType::OneOf => req_tools.to_owned(),
|
|
||||||
};
|
|
||||||
|
|
||||||
// adds the error notification function for LLM feedback if required
|
|
||||||
let mut text_response_properties = Map::new();
|
|
||||||
text_response_properties.insert(
|
|
||||||
"error".to_string(),
|
|
||||||
serde_json::json!({
|
|
||||||
"type": "string",
|
|
||||||
"description": "The error or issue to notify"
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
text_response_properties.insert(
|
|
||||||
"_name".to_string(),
|
|
||||||
serde_json::json!({
|
|
||||||
"type": "string",
|
|
||||||
"const": "notify_error"
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
let functions: HashMap<String, serde_json::Value> = tools_to_use
|
|
||||||
.iter()
|
|
||||||
.map(|tool| {
|
|
||||||
let func = tool.function.clone();
|
|
||||||
|
|
||||||
// Clone the existing parameters, which are expected to be a JSON object
|
|
||||||
let mut params = if let Value::Object(params) = &func.arguments {
|
|
||||||
params.clone()
|
|
||||||
} else {
|
|
||||||
Map::new()
|
|
||||||
};
|
|
||||||
|
|
||||||
// Insert the function's description at the top level, outside of properties
|
|
||||||
params.insert(
|
|
||||||
"description".to_string(),
|
|
||||||
Value::String(func.description.clone().unwrap_or_default()),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Ensure 'properties' exists and is an object
|
|
||||||
let properties = params
|
|
||||||
.entry("properties".to_string())
|
|
||||||
.or_insert_with(|| json!({}))
|
|
||||||
.as_object_mut()
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// Insert the constant for the function name inside 'properties'
|
|
||||||
properties.insert(
|
|
||||||
"_name".to_string(),
|
|
||||||
json!({
|
|
||||||
"type": "string",
|
|
||||||
"const": func.name.clone(),
|
|
||||||
// "description": "The name of the function"
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
// Check if 'required' exists, and it is an array. If not, create an empty array.
|
|
||||||
let required = params
|
|
||||||
.entry("required".to_string())
|
|
||||||
.or_insert_with(|| json!([]))
|
|
||||||
.as_array_mut()
|
|
||||||
.unwrap();
|
|
||||||
|
|
||||||
// Add 'name' to the 'required' array if it is not already present
|
|
||||||
if !required.iter().any(|r| r == "_name") {
|
|
||||||
required.push(json!("_name"));
|
|
||||||
}
|
|
||||||
|
|
||||||
(func.name, Value::Object(params))
|
|
||||||
})
|
|
||||||
.chain([(
|
|
||||||
"notify_error".to_string(),
|
|
||||||
serde_json::json!({
|
|
||||||
"properties": text_response_properties,
|
|
||||||
"required": ["error", "_name"],
|
|
||||||
"type": "object"
|
|
||||||
}),
|
|
||||||
)])
|
|
||||||
.collect();
|
|
||||||
|
|
||||||
let tools = Tools {
|
|
||||||
functions_map: FunctionsMap { functions },
|
|
||||||
properties: Properties {
|
|
||||||
function: tools_to_use
|
|
||||||
.iter()
|
|
||||||
.map(|tool| FunctionRef {
|
|
||||||
ref_path: format!("#/$functions/{}", tool.function.name.clone()),
|
|
||||||
})
|
|
||||||
.chain(std::iter::once(FunctionRef {
|
|
||||||
ref_path: "#/$functions/notify_error".to_string(),
|
|
||||||
}))
|
|
||||||
.collect(),
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
return Ok(Some(tools));
|
|
||||||
}
|
|
||||||
// Err(InferError::ToolError("No tools provided".to_string()))
|
|
||||||
Ok(None)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Batching logic
|
/// Batching logic
|
||||||
@ -505,7 +101,7 @@ impl ToolGrammar {
|
|||||||
///
|
///
|
||||||
/// Batches requests and sends them to the inference server
|
/// Batches requests and sends them to the inference server
|
||||||
#[allow(clippy::too_many_arguments)]
|
#[allow(clippy::too_many_arguments)]
|
||||||
async fn batching_task(
|
pub(crate) async fn batching_task(
|
||||||
mut client: ShardedClient,
|
mut client: ShardedClient,
|
||||||
waiting_served_ratio: f32,
|
waiting_served_ratio: f32,
|
||||||
max_batch_prefill_tokens: u32,
|
max_batch_prefill_tokens: u32,
|
||||||
@ -513,13 +109,13 @@ async fn batching_task(
|
|||||||
max_waiting_tokens: usize,
|
max_waiting_tokens: usize,
|
||||||
max_batch_size: Option<usize>,
|
max_batch_size: Option<usize>,
|
||||||
queue: Queue,
|
queue: Queue,
|
||||||
shared: Arc<Shared>,
|
notifier: Arc<Notify>,
|
||||||
generation_health: Arc<AtomicBool>,
|
generation_health: Arc<AtomicBool>,
|
||||||
) {
|
) {
|
||||||
// Infinite loop
|
// Infinite loop
|
||||||
loop {
|
loop {
|
||||||
// Wait for a notification from the Infer struct
|
// Wait for a notification from the Infer struct
|
||||||
shared.batching_task.notified().await;
|
notifier.notified().await;
|
||||||
|
|
||||||
// Get the next batch from the queue
|
// Get the next batch from the queue
|
||||||
// This batch might be smaller than the maximum batch size if there are not enough requests
|
// This batch might be smaller than the maximum batch size if there are not enough requests
|
||||||
@ -790,8 +386,8 @@ fn send_responses(
|
|||||||
let prefill_tokens = prefill_tokens
|
let prefill_tokens = prefill_tokens
|
||||||
.ids
|
.ids
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.zip(prefill_tokens.logprobs.into_iter())
|
.zip(prefill_tokens.logprobs)
|
||||||
.zip(prefill_tokens.texts.into_iter())
|
.zip(prefill_tokens.texts)
|
||||||
.map(|((id, logprob), text)| PrefillToken { id, text, logprob })
|
.map(|((id, logprob), text)| PrefillToken { id, text, logprob })
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
@ -880,28 +476,14 @@ fn send_errors(error: ClientError, entries: &mut IntMap<u64, Entry>) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Type alias for generation responses
|
impl From<text_generation_client::v3::GeneratedText> for GeneratedText {
|
||||||
pub(crate) type GenerateStreamResponse = (
|
fn from(value: text_generation_client::v3::GeneratedText) -> Self {
|
||||||
OwnedSemaphorePermit,
|
let v3_finish_reason =
|
||||||
u32, // input_length
|
text_generation_client::v3::FinishReason::try_from(value.finish_reason).unwrap();
|
||||||
UnboundedReceiverStream<Result<InferStreamResponse, InferError>>,
|
|
||||||
);
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub(crate) struct GeneratedText {
|
|
||||||
pub(crate) text: String,
|
|
||||||
pub(crate) generated_tokens: u32,
|
|
||||||
pub(crate) finish_reason: FinishReason,
|
|
||||||
pub(crate) seed: Option<u64>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl From<v3::GeneratedText> for GeneratedText {
|
|
||||||
fn from(value: v3::GeneratedText) -> Self {
|
|
||||||
let v3_finish_reason = v3::FinishReason::try_from(value.finish_reason).unwrap();
|
|
||||||
let finish_reason = match v3_finish_reason {
|
let finish_reason = match v3_finish_reason {
|
||||||
v3::FinishReason::Length => FinishReason::Length,
|
text_generation_client::v3::FinishReason::Length => FinishReason::Length,
|
||||||
v3::FinishReason::EosToken => FinishReason::EndOfSequenceToken,
|
text_generation_client::v3::FinishReason::EosToken => FinishReason::EndOfSequenceToken,
|
||||||
v3::FinishReason::StopSequence => FinishReason::StopSequence,
|
text_generation_client::v3::FinishReason::StopSequence => FinishReason::StopSequence,
|
||||||
};
|
};
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
@ -913,68 +495,6 @@ impl From<v3::GeneratedText> for GeneratedText {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub(crate) enum InferStreamResponse {
|
|
||||||
// Optional first message
|
|
||||||
Prefill(Vec<PrefillToken>),
|
|
||||||
// Intermediate messages
|
|
||||||
Intermediate {
|
|
||||||
token: Token,
|
|
||||||
top_tokens: Vec<Token>,
|
|
||||||
},
|
|
||||||
// Last message
|
|
||||||
End {
|
|
||||||
token: Token,
|
|
||||||
top_tokens: Vec<Token>,
|
|
||||||
generated_text: GeneratedText,
|
|
||||||
start: Instant,
|
|
||||||
queued: Instant,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug)]
|
|
||||||
pub(crate) struct InferResponse {
|
|
||||||
/// input_length is the input as perceived by the rust tokenizer in the
|
|
||||||
/// validation pathway. It is redundant with prefill.len() but prefill
|
|
||||||
/// has data only if the user asked for it. This will always be filled.
|
|
||||||
pub(crate) _input_length: u32,
|
|
||||||
pub(crate) prefill: Vec<PrefillToken>,
|
|
||||||
pub(crate) tokens: Vec<Token>,
|
|
||||||
pub(crate) generated_text: GeneratedText,
|
|
||||||
pub(crate) queued: Instant,
|
|
||||||
pub(crate) start: Instant,
|
|
||||||
pub(crate) top_tokens: Vec<Vec<Token>>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Error)]
|
|
||||||
pub enum InferError {
|
|
||||||
#[error("Request failed during generation: {0}")]
|
|
||||||
GenerationError(String),
|
|
||||||
#[error("Model is overloaded")]
|
|
||||||
Overloaded(#[from] TryAcquireError),
|
|
||||||
#[error("Input validation error: {0}")]
|
|
||||||
ValidationError(#[from] ValidationError),
|
|
||||||
#[error("Incomplete generation")]
|
|
||||||
IncompleteGeneration,
|
|
||||||
#[error("Template error: {0}")]
|
|
||||||
TemplateError(#[from] minijinja::Error),
|
|
||||||
#[error("Tool error: {0}")]
|
|
||||||
ToolError(String),
|
|
||||||
}
|
|
||||||
|
|
||||||
impl InferError {
|
|
||||||
pub(crate) fn error_type(&self) -> &str {
|
|
||||||
match self {
|
|
||||||
InferError::GenerationError(_) => "generation",
|
|
||||||
InferError::Overloaded(_) => "overloaded",
|
|
||||||
InferError::ValidationError(_) => "validation",
|
|
||||||
InferError::IncompleteGeneration => "incomplete_generation",
|
|
||||||
InferError::TemplateError(_) => "template_error",
|
|
||||||
InferError::ToolError(_) => "tool_error",
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// tests
|
// tests
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
@ -1,5 +1,4 @@
|
|||||||
/// Text Generation Inference Webserver
|
/// Text Generation Inference Webserver
|
||||||
|
|
||||||
pub mod config;
|
pub mod config;
|
||||||
mod infer;
|
mod infer;
|
||||||
pub mod server;
|
pub mod server;
|
||||||
|
@ -314,8 +314,6 @@ async fn main() -> Result<(), RouterError> {
|
|||||||
Some(pipeline_tag) => pipeline_tag.as_str() == "text-generation",
|
Some(pipeline_tag) => pipeline_tag.as_str() == "text-generation",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Determine the server port based on the feature and environment variable.
|
// Determine the server port based on the feature and environment variable.
|
||||||
let port = if cfg!(feature = "google") {
|
let port = if cfg!(feature = "google") {
|
||||||
std::env::var("AIP_HTTP_PORT")
|
std::env::var("AIP_HTTP_PORT")
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
/// HTTP Server logic
|
/// HTTP Server logic
|
||||||
|
|
||||||
use crate::config::Config;
|
use crate::config::Config;
|
||||||
use crate::infer::HealthCheck;
|
use crate::infer::v2::SchedulerV2;
|
||||||
|
use crate::infer::v3::SchedulerV3;
|
||||||
|
use crate::infer::{HealthCheck, Scheduler};
|
||||||
use crate::infer::{Infer, InferError, InferResponse, InferStreamResponse, ToolGrammar};
|
use crate::infer::{Infer, InferError, InferResponse, InferStreamResponse, ToolGrammar};
|
||||||
use crate::validation::ValidationError;
|
use crate::validation::ValidationError;
|
||||||
use crate::{
|
use crate::{
|
||||||
BestOfSequence, Details, ErrorResponse, FinishReason, GenerateParameters, GenerateRequest,
|
BestOfSequence, Details, ErrorResponse, FinishReason, GenerateParameters, GenerateRequest,
|
||||||
GenerateResponse, GrammarType, HubModelInfo, HubProcessorConfig, HubTokenizerConfig,
|
GenerateResponse, GrammarType, HubModelInfo, HubProcessorConfig, HubTokenizerConfig, Info,
|
||||||
Info, Message, PrefillToken, SimpleToken, StreamDetails, StreamResponse, Token,
|
Message, PrefillToken, SimpleToken, StreamDetails, StreamResponse, Token, TokenizeResponse,
|
||||||
TokenizeResponse, Usage, Validation,
|
Usage, Validation,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
ChatCompletion, ChatCompletionChoice, ChatCompletionChunk, ChatCompletionComplete,
|
ChatCompletion, ChatCompletionChoice, ChatCompletionChunk, ChatCompletionComplete,
|
||||||
@ -35,7 +36,8 @@ use std::convert::Infallible;
|
|||||||
use std::net::SocketAddr;
|
use std::net::SocketAddr;
|
||||||
use std::sync::atomic::AtomicBool;
|
use std::sync::atomic::AtomicBool;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
use text_generation_client::{v2::ShardedClient, ClientError};
|
use text_generation_client::{v2, v3, ClientError, ShardInfo};
|
||||||
|
use thiserror::Error;
|
||||||
use tokenizers::Tokenizer;
|
use tokenizers::Tokenizer;
|
||||||
use tokio::select;
|
use tokio::select;
|
||||||
use tokio::signal;
|
use tokio::signal;
|
||||||
@ -45,8 +47,6 @@ use tower_http::cors::{AllowOrigin, CorsLayer};
|
|||||||
use tracing::{info_span, instrument, Instrument};
|
use tracing::{info_span, instrument, Instrument};
|
||||||
use utoipa::OpenApi;
|
use utoipa::OpenApi;
|
||||||
use utoipa_swagger_ui::SwaggerUi;
|
use utoipa_swagger_ui::SwaggerUi;
|
||||||
use thiserror::Error;
|
|
||||||
use crate::infer::v2::SchedulerV2;
|
|
||||||
|
|
||||||
/// Generate tokens if `stream == false` or a stream of token if `stream == true`
|
/// Generate tokens if `stream == false` or a stream of token if `stream == true`
|
||||||
#[utoipa::path(
|
#[utoipa::path(
|
||||||
@ -218,9 +218,7 @@ async fn generate_internal(
|
|||||||
|
|
||||||
BestOfSequence {
|
BestOfSequence {
|
||||||
generated_text: output_text,
|
generated_text: output_text,
|
||||||
finish_reason: FinishReason::from(
|
finish_reason: response.generated_text.finish_reason,
|
||||||
response.generated_text.finish_reason,
|
|
||||||
),
|
|
||||||
generated_tokens: response.generated_text.generated_tokens,
|
generated_tokens: response.generated_text.generated_tokens,
|
||||||
prefill: response.prefill,
|
prefill: response.prefill,
|
||||||
tokens: response.tokens,
|
tokens: response.tokens,
|
||||||
@ -232,7 +230,7 @@ async fn generate_internal(
|
|||||||
});
|
});
|
||||||
|
|
||||||
Some(Details {
|
Some(Details {
|
||||||
finish_reason: FinishReason::from(response.generated_text.finish_reason),
|
finish_reason: response.generated_text.finish_reason,
|
||||||
generated_tokens: response.generated_text.generated_tokens,
|
generated_tokens: response.generated_text.generated_tokens,
|
||||||
prefill: response.prefill,
|
prefill: response.prefill,
|
||||||
tokens: response.tokens,
|
tokens: response.tokens,
|
||||||
@ -374,7 +372,7 @@ async fn generate_stream(
|
|||||||
Json(req): Json<GenerateRequest>,
|
Json(req): Json<GenerateRequest>,
|
||||||
) -> (
|
) -> (
|
||||||
HeaderMap,
|
HeaderMap,
|
||||||
Sse<impl Stream<Item=Result<Event, Infallible>>>,
|
Sse<impl Stream<Item = Result<Event, Infallible>>>,
|
||||||
) {
|
) {
|
||||||
let span = tracing::Span::current();
|
let span = tracing::Span::current();
|
||||||
let on_message_callback = |stream_token: StreamResponse| {
|
let on_message_callback = |stream_token: StreamResponse| {
|
||||||
@ -393,7 +391,7 @@ async fn generate_stream_internal(
|
|||||||
Json(req): Json<GenerateRequest>,
|
Json(req): Json<GenerateRequest>,
|
||||||
on_message_callback: impl Fn(StreamResponse) -> Event,
|
on_message_callback: impl Fn(StreamResponse) -> Event,
|
||||||
span: tracing::Span,
|
span: tracing::Span,
|
||||||
) -> (HeaderMap, impl Stream<Item=Result<Event, Infallible>>) {
|
) -> (HeaderMap, impl Stream<Item = Result<Event, Infallible>>) {
|
||||||
let start_time = Instant::now();
|
let start_time = Instant::now();
|
||||||
metrics::increment_counter!("tgi_request_count");
|
metrics::increment_counter!("tgi_request_count");
|
||||||
|
|
||||||
@ -473,7 +471,7 @@ async fn generate_stream_internal(
|
|||||||
// Token details
|
// Token details
|
||||||
let details = match details {
|
let details = match details {
|
||||||
true => Some(StreamDetails {
|
true => Some(StreamDetails {
|
||||||
finish_reason: FinishReason::from(generated_text.finish_reason),
|
finish_reason: generated_text.finish_reason,
|
||||||
generated_tokens: generated_text.generated_tokens,
|
generated_tokens: generated_text.generated_tokens,
|
||||||
seed: generated_text.seed,
|
seed: generated_text.seed,
|
||||||
}),
|
}),
|
||||||
@ -728,7 +726,7 @@ async fn completions(
|
|||||||
on_message_callback,
|
on_message_callback,
|
||||||
span_clone.clone(),
|
span_clone.clone(),
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
|
|
||||||
// send and dont wait for response
|
// send and dont wait for response
|
||||||
let _ = header_tx.send(header_map);
|
let _ = header_tx.send(header_map);
|
||||||
@ -835,7 +833,7 @@ async fn completions(
|
|||||||
Json(generate_request),
|
Json(generate_request),
|
||||||
span_clone,
|
span_clone,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
result.map(|(headers, generation)| (index, headers, generation))
|
result.map(|(headers, generation)| (index, headers, generation))
|
||||||
};
|
};
|
||||||
responses.push(response_future);
|
responses.push(response_future);
|
||||||
@ -1152,7 +1150,7 @@ async fn chat_completions(
|
|||||||
on_message_callback,
|
on_message_callback,
|
||||||
span,
|
span,
|
||||||
)
|
)
|
||||||
.await;
|
.await;
|
||||||
let sse = Sse::new(response_stream).keep_alive(KeepAlive::default());
|
let sse = Sse::new(response_stream).keep_alive(KeepAlive::default());
|
||||||
Ok((headers, sse).into_response())
|
Ok((headers, sse).into_response())
|
||||||
} else {
|
} else {
|
||||||
@ -1239,15 +1237,15 @@ example = json ! ({"error": "Incomplete generation"})),
|
|||||||
)
|
)
|
||||||
)]
|
)]
|
||||||
#[instrument(
|
#[instrument(
|
||||||
skip_all,
|
skip_all,
|
||||||
fields(
|
fields(
|
||||||
total_time,
|
total_time,
|
||||||
validation_time,
|
validation_time,
|
||||||
queue_time,
|
queue_time,
|
||||||
inference_time,
|
inference_time,
|
||||||
time_per_token,
|
time_per_token,
|
||||||
seed,
|
seed,
|
||||||
)
|
)
|
||||||
)]
|
)]
|
||||||
async fn vertex_compatibility(
|
async fn vertex_compatibility(
|
||||||
Extension(infer): Extension<Infer>,
|
Extension(infer): Extension<Infer>,
|
||||||
@ -1292,17 +1290,17 @@ async fn vertex_compatibility(
|
|||||||
Json(generate_request),
|
Json(generate_request),
|
||||||
span.clone(),
|
span.clone(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(_, Json(generation))| generation.generated_text)
|
.map(|(_, Json(generation))| generation.generated_text)
|
||||||
.map_err(|_| {
|
.map_err(|_| {
|
||||||
(
|
(
|
||||||
StatusCode::INTERNAL_SERVER_ERROR,
|
StatusCode::INTERNAL_SERVER_ERROR,
|
||||||
Json(ErrorResponse {
|
Json(ErrorResponse {
|
||||||
error: "Incomplete generation".into(),
|
error: "Incomplete generation".into(),
|
||||||
error_type: "Incomplete generation".into(),
|
error_type: "Incomplete generation".into(),
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.collect::<FuturesUnordered<_>>()
|
.collect::<FuturesUnordered<_>>()
|
||||||
@ -1476,14 +1474,20 @@ pub async fn run(
|
|||||||
// Create state
|
// Create state
|
||||||
|
|
||||||
// Open connection, get model info and warmup
|
// Open connection, get model info and warmup
|
||||||
let (scheduler, health_ext, shard_info, max_batch_total_tokens) = {
|
let (scheduler, health_ext, shard_info, max_batch_total_tokens): (
|
||||||
|
Arc<dyn Scheduler + Send + Sync>,
|
||||||
|
HealthCheck,
|
||||||
|
ShardInfo,
|
||||||
|
u32,
|
||||||
|
) = {
|
||||||
// Helper function to check both v2 and v3
|
// Helper function to check both v2 and v3
|
||||||
let check_max_batch_total_tokens = |max_supported_batch_total_tokens: Option<u32>| {
|
let check_max_batch_total_tokens = |max_supported_batch_total_tokens: Option<u32>| {
|
||||||
match max_supported_batch_total_tokens {
|
match max_supported_batch_total_tokens {
|
||||||
// Older models do not support automatic max-batch-total-tokens
|
// Older models do not support automatic max-batch-total-tokens
|
||||||
None => {
|
None => {
|
||||||
let max_batch_total_tokens = max_batch_total_tokens
|
let max_batch_total_tokens = max_batch_total_tokens.unwrap_or(
|
||||||
.unwrap_or(16000.max((max_total_tokens as u32).max(max_batch_prefill_tokens)));
|
16000.max((max_total_tokens as u32).max(max_batch_prefill_tokens)),
|
||||||
|
);
|
||||||
tracing::warn!("Model does not support automatic max batch total tokens");
|
tracing::warn!("Model does not support automatic max batch total tokens");
|
||||||
Ok(max_batch_total_tokens)
|
Ok(max_batch_total_tokens)
|
||||||
}
|
}
|
||||||
@ -1492,12 +1496,12 @@ pub async fn run(
|
|||||||
// Warn if user added his own max-batch-total-tokens as we will ignore it
|
// Warn if user added his own max-batch-total-tokens as we will ignore it
|
||||||
if max_batch_total_tokens.is_some() {
|
if max_batch_total_tokens.is_some() {
|
||||||
tracing::warn!(
|
tracing::warn!(
|
||||||
"`--max-batch-total-tokens` is deprecated for Flash \
|
"`--max-batch-total-tokens` is deprecated for Flash \
|
||||||
Attention models."
|
Attention models."
|
||||||
);
|
);
|
||||||
tracing::warn!(
|
tracing::warn!(
|
||||||
"Inferred max batch total tokens: {max_supported_batch_total_tokens}"
|
"Inferred max batch total tokens: {max_supported_batch_total_tokens}"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if max_total_tokens as u32 > max_supported_batch_total_tokens {
|
if max_total_tokens as u32 > max_supported_batch_total_tokens {
|
||||||
return Err(WebServerError::NotEnoughMemory(max_total_tokens));
|
return Err(WebServerError::NotEnoughMemory(max_total_tokens));
|
||||||
@ -1508,51 +1512,100 @@ pub async fn run(
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
let generation_health = Arc::new(AtomicBool::new(false));
|
let generation_health = Arc::new(AtomicBool::new(false));
|
||||||
|
|
||||||
// Try to open a v3 client
|
match v3::ShardedClient::connect_uds(master_shard_uds_path.clone()).await {
|
||||||
// Instantiate sharded client from the master unix socket
|
Ok(mut sharded_client) => {
|
||||||
let mut sharded_client = ShardedClient::connect_uds(master_shard_uds_path)
|
// server is running on v3
|
||||||
.await
|
// Clear the cache; useful if the webserver rebooted
|
||||||
.map_err(WebServerError::Connection)?;
|
sharded_client
|
||||||
// Clear the cache; useful if the webserver rebooted
|
.clear_cache(None)
|
||||||
sharded_client
|
.await
|
||||||
.clear_cache(None)
|
.map_err(WebServerError::Cache)?;
|
||||||
.await
|
// Get info from the shard
|
||||||
.map_err(WebServerError::Cache)?;
|
let shard_info = sharded_client.info().await.map_err(WebServerError::Info)?;
|
||||||
// Get info from the shard
|
|
||||||
let shard_info = sharded_client.info().await.map_err(WebServerError::Info)?;
|
|
||||||
|
|
||||||
// Warmup model
|
// Warmup model
|
||||||
tracing::info!("Warming up model");
|
tracing::info!("Warming up model");
|
||||||
let max_batch_total_tokens = check_max_batch_total_tokens(sharded_client
|
let max_batch_total_tokens = check_max_batch_total_tokens(
|
||||||
.warmup(
|
sharded_client
|
||||||
max_input_tokens as u32,
|
.warmup(
|
||||||
max_batch_prefill_tokens,
|
max_input_tokens as u32,
|
||||||
max_total_tokens as u32,
|
max_batch_prefill_tokens,
|
||||||
max_batch_size,
|
max_total_tokens as u32,
|
||||||
)
|
max_batch_size,
|
||||||
.await
|
)
|
||||||
.map_err(WebServerError::Warmup)?)?;
|
.await
|
||||||
tracing::info!("Setting max batch total tokens to {max_batch_total_tokens}");
|
.map_err(WebServerError::Warmup)?,
|
||||||
|
)?;
|
||||||
|
|
||||||
let health_ext = HealthCheck::new(Arc::new(sharded_client.clone()), generation_health.clone());
|
let health_ext =
|
||||||
let scheduler = SchedulerV2::new(
|
HealthCheck::new(Arc::new(sharded_client.clone()), generation_health.clone());
|
||||||
sharded_client,
|
let scheduler = Arc::new(SchedulerV3::new(
|
||||||
waiting_served_ratio,
|
sharded_client,
|
||||||
max_batch_prefill_tokens,
|
waiting_served_ratio,
|
||||||
max_batch_total_tokens,
|
max_batch_prefill_tokens,
|
||||||
max_waiting_tokens,
|
max_batch_total_tokens,
|
||||||
max_batch_size,
|
max_waiting_tokens,
|
||||||
shard_info.requires_padding,
|
max_batch_size,
|
||||||
shard_info.window_size,
|
shard_info.requires_padding,
|
||||||
shard_info.speculate,
|
shard_info.window_size,
|
||||||
generation_health,
|
shard_info.speculate,
|
||||||
);
|
generation_health,
|
||||||
|
));
|
||||||
|
tracing::info!("Using scheduler V3");
|
||||||
|
|
||||||
(scheduler, health_ext, shard_info, max_batch_total_tokens)
|
(scheduler, health_ext, shard_info, max_batch_total_tokens)
|
||||||
|
}
|
||||||
|
Err(_) => {
|
||||||
|
let mut sharded_client = v2::ShardedClient::connect_uds(master_shard_uds_path)
|
||||||
|
.await
|
||||||
|
.map_err(WebServerError::Connection)?;
|
||||||
|
|
||||||
|
// server is running on v2
|
||||||
|
// Clear the cache; useful if the webserver rebooted
|
||||||
|
sharded_client
|
||||||
|
.clear_cache(None)
|
||||||
|
.await
|
||||||
|
.map_err(WebServerError::Cache)?;
|
||||||
|
// Get info from the shard
|
||||||
|
let shard_info = sharded_client.info().await.map_err(WebServerError::Info)?;
|
||||||
|
|
||||||
|
// Warmup model
|
||||||
|
tracing::info!("Warming up model");
|
||||||
|
let max_batch_total_tokens = check_max_batch_total_tokens(
|
||||||
|
sharded_client
|
||||||
|
.warmup(
|
||||||
|
max_input_tokens as u32,
|
||||||
|
max_batch_prefill_tokens,
|
||||||
|
max_total_tokens as u32,
|
||||||
|
max_batch_size,
|
||||||
|
)
|
||||||
|
.await
|
||||||
|
.map_err(WebServerError::Warmup)?,
|
||||||
|
)?;
|
||||||
|
|
||||||
|
let health_ext =
|
||||||
|
HealthCheck::new(Arc::new(sharded_client.clone()), generation_health.clone());
|
||||||
|
let scheduler = Arc::new(SchedulerV2::new(
|
||||||
|
sharded_client,
|
||||||
|
waiting_served_ratio,
|
||||||
|
max_batch_prefill_tokens,
|
||||||
|
max_batch_total_tokens,
|
||||||
|
max_waiting_tokens,
|
||||||
|
max_batch_size,
|
||||||
|
shard_info.requires_padding,
|
||||||
|
shard_info.window_size,
|
||||||
|
shard_info.speculate,
|
||||||
|
generation_health,
|
||||||
|
));
|
||||||
|
tracing::info!("Using scheduler V2");
|
||||||
|
|
||||||
|
(scheduler, health_ext, shard_info, max_batch_total_tokens)
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
tracing::info!("Setting max batch total tokens to {max_batch_total_tokens}");
|
||||||
|
|
||||||
let validation = Validation::new(
|
let validation = Validation::new(
|
||||||
validation_workers,
|
validation_workers,
|
||||||
@ -1566,7 +1619,13 @@ pub async fn run(
|
|||||||
grammar_support,
|
grammar_support,
|
||||||
);
|
);
|
||||||
|
|
||||||
let infer = Infer::new(Arc::new(scheduler), validation, max_concurrent_requests, tokenizer_config, processor_config);
|
let infer = Infer::new(
|
||||||
|
scheduler,
|
||||||
|
validation,
|
||||||
|
max_concurrent_requests,
|
||||||
|
tokenizer_config,
|
||||||
|
processor_config,
|
||||||
|
);
|
||||||
|
|
||||||
// Duration buckets
|
// Duration buckets
|
||||||
let duration_matcher = Matcher::Suffix(String::from("duration"));
|
let duration_matcher = Matcher::Suffix(String::from("duration"));
|
||||||
@ -1659,8 +1718,8 @@ pub async fn run(
|
|||||||
|
|
||||||
#[derive(OpenApi)]
|
#[derive(OpenApi)]
|
||||||
#[openapi(
|
#[openapi(
|
||||||
paths(vertex_compatibility),
|
paths(vertex_compatibility),
|
||||||
components(schemas(VertexInstance, VertexRequest, VertexResponse))
|
components(schemas(VertexInstance, VertexRequest, VertexResponse))
|
||||||
)]
|
)]
|
||||||
struct VertextApiDoc;
|
struct VertextApiDoc;
|
||||||
|
|
||||||
@ -1756,7 +1815,8 @@ pub async fn run(
|
|||||||
let listener = tokio::net::TcpListener::bind(&addr).await.unwrap();
|
let listener = tokio::net::TcpListener::bind(&addr).await.unwrap();
|
||||||
axum::serve(listener, app)
|
axum::serve(listener, app)
|
||||||
.with_graceful_shutdown(shutdown_signal())
|
.with_graceful_shutdown(shutdown_signal())
|
||||||
.await.map_err(|err| WebServerError::Axum(Box::new(err)))?;
|
.await
|
||||||
|
.map_err(|err| WebServerError::Axum(Box::new(err)))?;
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@ -1770,7 +1830,7 @@ async fn shutdown_signal() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
let terminate = async {
|
let terminate = async {
|
||||||
signal::unix::signal(signal::unix::SignalKind::terminate())
|
signal::unix::signal(signal::unix::SignalKind::terminate())
|
||||||
.expect("failed to install signal handler")
|
.expect("failed to install signal handler")
|
||||||
.recv()
|
.recv()
|
||||||
@ -1778,7 +1838,7 @@ async fn shutdown_signal() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(not(unix))]
|
#[cfg(not(unix))]
|
||||||
let terminate = std::future::pending::<()>();
|
let terminate = std::future::pending::<()>();
|
||||||
|
|
||||||
tokio::select! {
|
tokio::select! {
|
||||||
_ = ctrl_c => {},
|
_ = ctrl_c => {},
|
||||||
@ -1836,4 +1896,4 @@ pub enum WebServerError {
|
|||||||
NotEnoughMemory(usize),
|
NotEnoughMemory(usize),
|
||||||
#[error("Axum error: {0}")]
|
#[error("Axum error: {0}")]
|
||||||
Axum(#[from] axum::BoxError),
|
Axum(#[from] axum::BoxError),
|
||||||
}
|
}
|
||||||
|
@ -12,8 +12,8 @@ gen-server:
|
|||||||
# Compile protos
|
# Compile protos
|
||||||
pip install grpcio-tools==1.51.1 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
|
pip install grpcio-tools==1.51.1 mypy-protobuf==3.4.0 'types-protobuf>=3.20.4' --no-cache-dir
|
||||||
mkdir text_generation_server/pb || true
|
mkdir text_generation_server/pb || true
|
||||||
python -m grpc_tools.protoc -I../proto --python_out=text_generation_server/pb \
|
python -m grpc_tools.protoc -I../proto/v3 --python_out=text_generation_server/pb \
|
||||||
--grpc_python_out=text_generation_server/pb --mypy_out=text_generation_server/pb ../proto/generate.proto
|
--grpc_python_out=text_generation_server/pb --mypy_out=text_generation_server/pb ../proto/v3/generate.proto
|
||||||
find text_generation_server/pb/ -type f -name "*.py" -print0 -exec sed -i -e 's/^\(import.*pb2\)/from . \1/g' {} \;
|
find text_generation_server/pb/ -type f -name "*.py" -print0 -exec sed -i -e 's/^\(import.*pb2\)/from . \1/g' {} \;
|
||||||
touch text_generation_server/pb/__init__.py
|
touch text_generation_server/pb/__init__.py
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user