__init__.py 779 Bytes
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from .data import (
    DataPrompt,
    DecoderOnlyInputs,
    EmbedsInputs,
    EmbedsPrompt,
    EncoderDecoderInputs,
    ExplicitEncoderDecoderPrompt,
    ProcessorInputs,
    PromptType,
    SingletonInputs,
    SingletonPrompt,
    TextPrompt,
    TokenInputs,
    TokensPrompt,
    embeds_inputs,
    token_inputs,
)
21
22

__all__ = [
23
    "DataPrompt",
24
25
    "TextPrompt",
    "TokensPrompt",
26
27
    "PromptType",
    "SingletonPrompt",
28
    "ExplicitEncoderDecoderPrompt",
29
    "TokenInputs",
30
    "EmbedsInputs",
31
    "EmbedsPrompt",
32
    "token_inputs",
33
    "embeds_inputs",
34
35
    "DecoderOnlyInputs",
    "EncoderDecoderInputs",
36
37
    "ProcessorInputs",
    "SingletonInputs",
38
]