40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
from .data import (DecoderOnlyInputs, EncoderDecoderInputs,
|
||
|
|
ExplicitEncoderDecoderPrompt, ProcessorInputs, PromptType,
|
||
|
|
SingletonInputs, SingletonInputsAdapter, SingletonPrompt,
|
||
|
|
TextPrompt, TokenInputs, TokensPrompt,
|
||
|
|
build_explicit_enc_dec_prompt, to_enc_dec_tuple_list,
|
||
|
|
token_inputs, zip_enc_dec_prompts)
|
||
|
|
from .registry import (DummyData, InputContext, InputProcessingContext,
|
||
|
|
InputRegistry)
|
||
|
|
|
||
|
|
INPUT_REGISTRY = InputRegistry()
|
||
|
|
"""
|
||
|
|
The global :class:`~InputRegistry` which is used by :class:`~vllm.LLMEngine`
|
||
|
|
to dispatch data processing according to the target model.
|
||
|
|
"""
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"TextPrompt",
|
||
|
|
"TokensPrompt",
|
||
|
|
"PromptType",
|
||
|
|
"SingletonPrompt",
|
||
|
|
"ExplicitEncoderDecoderPrompt",
|
||
|
|
"TokenInputs",
|
||
|
|
"token_inputs",
|
||
|
|
"DecoderOnlyInputs",
|
||
|
|
"EncoderDecoderInputs",
|
||
|
|
"ProcessorInputs",
|
||
|
|
"SingletonInputs",
|
||
|
|
"SingletonInputsAdapter",
|
||
|
|
"build_explicit_enc_dec_prompt",
|
||
|
|
"to_enc_dec_tuple_list",
|
||
|
|
"zip_enc_dec_prompts",
|
||
|
|
"INPUT_REGISTRY",
|
||
|
|
"DummyData",
|
||
|
|
"InputContext",
|
||
|
|
"InputProcessingContext",
|
||
|
|
"InputRegistry",
|
||
|
|
]
|