__init__.py 821 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
from .data import (
    DataPrompt,
    DecoderOnlyInputs,
    EmbedsInputs,
    EmbedsPrompt,
    EncoderDecoderInputs,
    ExplicitEncoderDecoderPrompt,
    ProcessorInputs,
    PromptType,
    SingletonInputs,
    SingletonPrompt,
15
    StreamingInput,
16
17
18
19
20
21
    TextPrompt,
    TokenInputs,
    TokensPrompt,
    embeds_inputs,
    token_inputs,
)
22
23

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