87 lines
2.5 KiB
Python
87 lines
2.5 KiB
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
from typing import Any
|
|
|
|
from vllm.config import VllmConfig
|
|
from vllm.entrypoints.chat_utils import (
|
|
ChatCompletionMessageParam,
|
|
ConversationMessage,
|
|
parse_chat_messages,
|
|
parse_chat_messages_async,
|
|
)
|
|
from vllm.logger import init_logger
|
|
from vllm.tokenizers import TokenizerLike
|
|
|
|
from .base import BaseRenderer
|
|
from .inputs import DictPrompt
|
|
from .inputs.preprocess import parse_dec_only_prompt
|
|
from .params import ChatParams
|
|
|
|
logger = init_logger(__name__)
|
|
|
|
|
|
class TerratorchRenderer(BaseRenderer):
|
|
@classmethod
|
|
def from_config(
|
|
cls,
|
|
config: VllmConfig,
|
|
tokenizer_kwargs: dict[str, Any],
|
|
) -> "BaseRenderer":
|
|
return cls(config)
|
|
|
|
def __init__(self, config: VllmConfig) -> None:
|
|
super().__init__(config)
|
|
|
|
model_config = self.model_config
|
|
if not model_config.skip_tokenizer_init:
|
|
raise ValueError("Terratorch renderer requires `skip_tokenizer_init=True`")
|
|
|
|
@property
|
|
def tokenizer(self) -> TokenizerLike | None:
|
|
return None
|
|
|
|
def get_tokenizer(self) -> TokenizerLike:
|
|
raise ValueError("Tokenizer not available for Terratorch renderer")
|
|
|
|
def render_messages(
|
|
self,
|
|
messages: list[ChatCompletionMessageParam],
|
|
params: ChatParams,
|
|
) -> tuple[list[ConversationMessage], DictPrompt]:
|
|
model_config = self.model_config
|
|
|
|
conversation, mm_data, mm_uuids = parse_chat_messages(
|
|
messages,
|
|
model_config,
|
|
content_format="string",
|
|
)
|
|
|
|
prompt = parse_dec_only_prompt([1]) # Dummy token IDs
|
|
if mm_data is not None:
|
|
prompt["multi_modal_data"] = mm_data
|
|
if mm_uuids is not None:
|
|
prompt["multi_modal_uuids"] = mm_uuids
|
|
|
|
return conversation, prompt
|
|
|
|
async def render_messages_async(
|
|
self,
|
|
messages: list[ChatCompletionMessageParam],
|
|
params: ChatParams,
|
|
) -> tuple[list[ConversationMessage], DictPrompt]:
|
|
model_config = self.model_config
|
|
|
|
conversation, mm_data, mm_uuids = await parse_chat_messages_async(
|
|
messages,
|
|
model_config,
|
|
content_format="string",
|
|
)
|
|
|
|
prompt = parse_dec_only_prompt([1]) # Dummy token IDs
|
|
if mm_data is not None:
|
|
prompt["multi_modal_data"] = mm_data
|
|
if mm_uuids is not None:
|
|
prompt["multi_modal_uuids"] = mm_uuids
|
|
|
|
return conversation, prompt
|