Source code for lmdeploy.messages

# Copyright (c) OpenMMLab. All rights reserved.
import enum
from dataclasses import dataclass, field
from typing import Dict, List, Literal, Optional

from pydantic.dataclasses import dataclass as pydantic_dataclass

from .tokenizer import Tokenizer


[docs] @dataclass class GenerationConfig: """generation parameters used by inference engines. Args: n (int): Define how many chat completion choices to generate for each input message. **Only 1** is supported now. max_new_tokens (int): The maximum number of tokens that can be generated in the chat completion top_p (float): An alternative to sampling with temperature, called nucleus sampling, where the model considers the results of the tokens with top_p probability mass top_k (int): An alternative to sampling with temperature, where the model considers the top_k tokens with the highest probability temperature (float): Sampling temperature repetition_penalty (float): Penalty to prevent the model from generating repeated words or phrases. A value larger than 1 discourages repetition ignore_eos (bool): Indicator to ignore the eos_token_id or not random_seed (int): Seed used when sampling a token stop_words (List[str]): Words that stop generating further tokens bad_words (List[str]): Words that the engine will never generate min_new_tokens (int): The minimum numbers of tokens to generate, ignoring the number of tokens in the prompt. skip_special_tokens (bool): Whether or not to remove special tokens in the decoding. Default to be True. logprobs (int): Number of log probabilities to return per output token. """ n: int = 1 max_new_tokens: int = 512 top_p: float = 1.0 top_k: int = 1 temperature: float = 0.8 repetition_penalty: float = 1.0 ignore_eos: bool = False random_seed: int = None stop_words: List[str] = None bad_words: List[str] = None min_new_tokens: int = None skip_special_tokens: bool = True logprobs: int = None
@dataclass class EngineGenerationConfig(GenerationConfig): """generation parameter used by the inference engines.""" stop_words: List[int] = None bad_words: List[int] = None @staticmethod def From(gen_config: GenerationConfig, tokenizer: Tokenizer): """convert `GenerationConfig` to `EngineGenerationConfig` Args: gen_config (GenerationConfig): an instance of class `GenerationConfig` tokenizer (Tokenizer): a tokenizer to encode the `stop_words` and `bad_words` in `gen_config` Returns: EngineGenerationConfig: the generation config used by inference engines Examples: >>> from lmdeploy import Tokenizer, GenerationConfig, EngineGenerationConfig >>> tokenizer = Tokenizer('internlm/internlm-chat-7b') >>> gen_config = GenerationConfig(stop_words=['<eoa>']) >>> gen_config = EngineGenerationConfig.From(gen_config, tokenizer) """ # noqa E501 def special_word_token_ids(words): if words is not None: assert isinstance(words, List) and \ all(isinstance(elem, str) for elem in words), \ f'stop_words must be a list of str but got {type(words)}' indexes = [] for word in words: indexes += tokenizer.indexes_containing_token(word) return indexes return None return EngineGenerationConfig( n=gen_config.n, logprobs=gen_config.logprobs, max_new_tokens=gen_config.max_new_tokens, min_new_tokens=gen_config.min_new_tokens, top_p=gen_config.top_p, top_k=gen_config.top_k, temperature=gen_config.temperature, repetition_penalty=gen_config.repetition_penalty, ignore_eos=gen_config.ignore_eos, random_seed=gen_config.random_seed, skip_special_tokens=gen_config.skip_special_tokens, stop_words=special_word_token_ids(gen_config.stop_words), bad_words=special_word_token_ids(gen_config.bad_words)) def __post_init__(self): """Check input validation.""" assert type( self.n) == int and self.n > 0, 'n is not a positive integer' assert self.top_p > 0 and self.top_p <= 1 # (0, 1] assert self.top_k >= 0, 'top_k can not be a negative integer' assert self.temperature >= 0 and self.temperature <= 2 # [0,2]
[docs] @pydantic_dataclass class TurbomindEngineConfig: """TurboMind Engine config. Args: model_name (str): the name of the deployed model, deprecated and has no effect when version > 0.2.1 model_format (str): the layout of the deployed model. It can be one of the following values [hf, meta_llama, awq], `hf` meaning huggingface model(.bin, .safetensors), `meta_llama` being meta llama's format(.pth), awq` meaning the quantized model by AWQ. tp (int): the number of GPU cards used in tensor parallelism, default to 1 session_len (int): the max session length of a sequence, default to None max_batch_size (int): the max batch size during inference, default to 128 cache_max_entry_count (float): the percentage of gpu memory occupied by the k/v cache. For versions of lmdeploy between `v0.2.0` and `v0.2.1`, it defaults to 0.5, depicting the percentage of TOTAL GPU memory to be allocated to the k/v cache. For lmdeploy versions greater than `v0.2.1`, it defaults to 0.8, signifying the percentage of FREE GPU memory to be reserved for the k/v cache cache_block_seq_len (int): the length of the token sequence in a k/v block, default to 64 enable_prefix_caching (bool): enable cache prompts for block reuse, default to False quant_policy (int): default to 0. When k/v is quantized into 8 bit, set it to 4 rope_scaling_factor (int): scaling factor used for dynamic ntk, default to 0. TurboMind follows the implementation of transformer LlamaAttention use_logn_attn (bool): whether or not to use log attn: default to False download_dir (str): Directory to download and load the weights, default to the default cache directory of huggingface. revision (str): The specific model version to use. It can be a branch name, a tag name, or a commit id. If unspecified, will use the default version. max_prefill_token_num(int): the number of tokens each iteration during prefill, default to 8192 num_tokens_per_iter(int): the number of tokens processed in each forward pass. Working with `max_prefill_iters` enables "Dynamic SplitFuse"-like scheduling max_prefill_iters(int): the max number of forward pass during prefill stage """ # noqa: E501 model_name: Optional[str] = None model_format: Optional[str] = None tp: int = 1 session_len: Optional[int] = None max_batch_size: int = 128 cache_max_entry_count: float = 0.8 cache_block_seq_len: int = 64 enable_prefix_caching: bool = False quant_policy: int = 0 rope_scaling_factor: float = 0.0 use_logn_attn: bool = False download_dir: Optional[str] = None revision: Optional[str] = None max_prefill_token_num: int = 8192 num_tokens_per_iter: int = 0 max_prefill_iters: int = 1 def __post_init__(self): """Check input validation.""" assert self.tp >= 1, 'tp must be a positive integer' assert self.max_batch_size >= 1, 'max_batch_size must be a positive integer' # noqa assert self.cache_max_entry_count > 0 and self.cache_max_entry_count < 1, 'invalid cache_max_entry_count' # noqa assert self.quant_policy in (0, 4, 8), 'invalid quant_policy' assert self.rope_scaling_factor >= 0, 'invalid rope_scaling_factor' assert self.max_prefill_token_num >= 0, 'invalid max_prefill_token_num' assert self.num_tokens_per_iter >= 0, 'invalid num_tokens_per_iter'
[docs] @dataclass class PytorchEngineConfig: """PyTorch Engine Config. Args: model_name (str): name of the given model. tp (int): Tensor Parallelism. default 1. session_len (int): Max session length. Default None. max_batch_size (int): Max batch size. Default 128. cache_max_entry_count (float): the percentage of gpu memory occupied by the k/v cache. For lmdeploy versions greater than `v0.2.1`, it defaults to 0.8, signifying the percentage of FREE GPU memory to be reserved for the k/v cache eviction_type (str): What action to perform when kv cache is full, ['recompute', 'copy'], Deprecated. prefill_interval (int): Interval to perform prefill, Default 16. block_size (int): paging cache block size, default 64. num_cpu_blocks (int): Num cpu blocks. If num is 0, cache would be allocate according to current environment. num_gpu_blocks (int): Num gpu blocks. If num is 0, cache would be allocate according to current environment. adapters (dict): The path configs to lora adapters. max_prefill_token_num (int): tokens per iteration. thread_safe (bool): thread safe engine instance. enable_prefix_caching (bool): Enable token match and sharing caches. device_type (str): The inference device type, options ['cuda'] download_dir (str): Directory to download and load the weights, default to the default cache directory of huggingface. revision (str): The specific model version to use. It can be a branch name, a tag name, or a commit id. If unspecified, will use the default version. """ model_name: str = '' tp: int = 1 session_len: int = None max_batch_size: int = 128 cache_max_entry_count: float = 0.8 eviction_type: str = 'recompute' prefill_interval: int = 16 block_size: int = 64 num_cpu_blocks: int = 0 num_gpu_blocks: int = 0 adapters: Dict[str, str] = None max_prefill_token_num: int = 4096 thread_safe: bool = False enable_prefix_caching: bool = False device_type: str = 'cuda' download_dir: str = None revision: str = None def __post_init__(self): """Check input validation.""" assert self.tp >= 1, 'invalid tp' assert self.max_batch_size >= 1, 'invalid max_batch_size' assert self.cache_max_entry_count > 0 and self.cache_max_entry_count < 1, 'invalid cache_max_entry_count' # noqa assert self.eviction_type in ('recompute', 'copy'), 'invalid eviction_type' assert self.num_cpu_blocks >= 0, 'invalid num_cpu_blocks' assert self.max_prefill_token_num >= 0, 'invalid max_prefill_token_num' assert self.num_gpu_blocks >= 0, 'invalid num_gpu_blocks' assert self.device_type in [ 'cuda', 'ascend' ], (f'invalid device_type: {self.device_type}')
class ResponseType(enum.Enum): """Response type.""" SUCCESS = enum.auto() FINISH = enum.auto() ENGINE_STOP_ERROR = enum.auto() SESSION_REPEAT = enum.auto() SESSION_NOT_EXIST = enum.auto() HANDLER_NOT_EXIST = enum.auto() INPUT_LENGTH_ERROR = enum.auto() @dataclass class Response: """Pack all response information together. Args: text (str): the response text from the server. If the output text is an empty str and the finish_reason is length, it means the session length is reached. generate_token_len (int): the response token length. input_token_len (int): the input prompt token length. Note that it may contains chat template part. session_id (int): the id for running the session. Basically, it refers to the position index of the input request batch. finish_reason ('stop' | 'length' | None): the reason the model stopped generating tokens. This will be 'stop' if the model hit a natural stop point or a provided stop sequence, 'length' if the maximum number of tokens specified in the request was reached. token_ids: (List[int]): the output token ids. logprobs: (List[Dict[int, float]]): the top logprobs for each output position. """ text: str generate_token_len: int input_token_len: int session_id: int finish_reason: Optional[Literal['stop', 'length']] = None token_ids: List[int] = field(default_factory=list) logprobs: List[Dict[int, float]] = None @dataclass class EngineOutput: """Engine output for turbomind/pytorch engine. Args: status (ResponseType): the response type. token_ids (List[int]): the output token ids. num_token (int): the length of output token, for turbomind, num_token may not equal to the length of token_ids logprobs (List[Dict[int, float]]): the top logprobs for each output position. """ status: ResponseType token_ids: List[int] num_token: int logprobs: List[Dict[int, float]] = None @dataclass class VisionConfig: """Vison model configs. Args: max_batch_size (int): the max image size passed to the model, since some models will use image patch, the actual running batch could be larger than this value. thread_safe (bool): Specifies whether the engine instance is thread-safe. Please set it to True when using the pipeline in a multi-threaded environment. """ max_batch_size: int = 1 thread_safe: bool = False