mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-13 05:35:01 +08:00
Signed-off-by: wang.yuqi <noooop@126.com> Signed-off-by: Christian Pinto <christian.pinto@ibm.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Christian Pinto <christian.pinto@ibm.com>
14 lines
437 B
Python
14 lines
437 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
from typing import Literal, get_args
|
|
|
|
GenerationTask = Literal["generate", "transcription"]
|
|
GENERATION_TASKS = get_args(GenerationTask)
|
|
|
|
PoolingTask = Literal[
|
|
"embed", "classify", "score", "token_embed", "token_classify", "plugin"
|
|
]
|
|
POOLING_TASKS = get_args(PoolingTask)
|
|
|
|
SupportedTask = Literal[GenerationTask, PoolingTask]
|