abs_reasoning_parsers.py 6.62 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
import os
5
from abc import abstractmethod
6
from collections.abc import Callable, Sequence
7
from functools import cached_property
8
from typing import TYPE_CHECKING, Any
9
10

from vllm.logger import init_logger
11
12
from vllm.utils import import_from_path
from vllm.utils.collections import is_list_of
13

14
if TYPE_CHECKING:
15
16
17
18
19
    from vllm.entrypoints.openai.protocol import (
        ChatCompletionRequest,
        DeltaMessage,
        ResponsesRequest,
    )
20
21
22
23
24
25
26
    from vllm.transformers_utils.tokenizer import AnyTokenizer
else:
    ChatCompletionRequest = Any
    DeltaMessage = Any
    ResponsesRequest = Any
    AnyTokenizer = Any

27
28
29
30
31
logger = init_logger(__name__)


class ReasoningParser:
    """
32
    Abstract reasoning parser class that should not be used directly.
33
34
35
36
37
    Provided and methods should be used in derived classes.

    It is used to extract reasoning content from the model output.
    """

38
    def __init__(self, tokenizer: AnyTokenizer, *args, **kwargs):
39
40
41
        self.model_tokenizer = tokenizer

    @cached_property
42
    def vocab(self) -> dict[str, int]:
43
44
45
46
        # NOTE: Only PreTrainedTokenizerFast is guaranteed to have .vocab
        # whereas all tokenizers have .get_vocab()
        return self.model_tokenizer.get_vocab()

47
    @abstractmethod
48
    def is_reasoning_end(self, input_ids: list[int]) -> bool:
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
        """
        Check if the reasoning content ends in the input_ids.

        It is used in structured engines like `xgrammar` to check if the
        reasoning content ends in the model output.

        Parameters:
        input_ids: list[int]
            The input_ids of the model output.

        Returns:
        bool
            True if the reasoning content ends in the input_ids.
        """

    @abstractmethod
    def extract_content_ids(self, input_ids: list[int]) -> list[int]:
        """
        Extract content token ids from the input_ids.
        Parameters:
        input_ids: list[int]
            The input_ids of the model output.
        Returns:
        list[int]
            The extracted content from the input_ids.
        """

    @abstractmethod
77
    def extract_reasoning_content(
78
79
        self,
        model_output: str,
80
        request: ChatCompletionRequest | ResponsesRequest,
81
    ) -> tuple[str | None, str | None]:
82
83
84
85
86
87
88
89
90
91
92
93
94
95
        """
        Extract reasoning content from a complete model-generated string.

        Used for non-streaming responses where we have the entire model response
        available before sending to the client.

        Parameters:
        model_output: str
            The model-generated string to extract reasoning content from.

        request: ChatCompletionRequest
            The request object that was used to generate the model_output.

        Returns:
96
        tuple[Optional[str], Optional[str]]
97
98
99
            A tuple containing the reasoning content and the content.
        """

100
    @abstractmethod
101
102
103
104
105
106
107
108
    def extract_reasoning_content_streaming(
        self,
        previous_text: str,
        current_text: str,
        delta_text: str,
        previous_token_ids: Sequence[int],
        current_token_ids: Sequence[int],
        delta_token_ids: Sequence[int],
109
    ) -> DeltaMessage | None:
110
111
112
113
114
115
116
        """
        Instance method that should be implemented for extracting reasoning
        from an incomplete response; for use when handling reasoning calls and
        streaming. Has to be an instance method because  it requires state -
        the current tokens/diffs, but also the information about what has
        previously been parsed and extracted (see constructor)
        """
117

118
119

class ReasoningParserManager:
120
    reasoning_parsers: dict[str, type] = {}
121
122

    @classmethod
123
    def get_reasoning_parser(cls, name: str | None) -> type[ReasoningParser]:
124
125
126
127
128
129
130
131
        """
        Get reasoning parser by name which is registered by `register_module`.

        Raise a KeyError exception if the name is not registered.
        """
        if name in cls.reasoning_parsers:
            return cls.reasoning_parsers[name]

132
        raise KeyError(f"reasoning helper: '{name}' not found in reasoning_parsers")
133
134

    @classmethod
135
136
137
    def _register_module(
        cls,
        module: type,
138
        module_name: str | list[str] | None = None,
139
140
        force: bool = True,
    ) -> None:
141
        if not issubclass(module, ReasoningParser):
142
143
144
            raise TypeError(
                f"module must be subclass of ReasoningParser, but got {type(module)}"
            )
145
146
147
148
149
150
151
        if module_name is None:
            module_name = module.__name__
        if isinstance(module_name, str):
            module_name = [module_name]
        for name in module_name:
            if not force and name in cls.reasoning_parsers:
                existed_module = cls.reasoning_parsers[name]
152
153
154
                raise KeyError(
                    f"{name} is already registered at {existed_module.__module__}"
                )
155
156
157
158
            cls.reasoning_parsers[name] = module

    @classmethod
    def register_module(
159
        cls,
160
        name: str | list[str] | None = None,
161
        force: bool = True,
162
163
        module: type | None = None,
    ) -> type | Callable:
164
165
        """
        Register module with the given name or name list. it can be used as a
166
        decoder(with module as None) or normal function(with module as not
167
168
169
170
171
172
        None).
        """
        if not isinstance(force, bool):
            raise TypeError(f"force must be a boolean, but got {type(force)}")

        # raise the error ahead of time
173
        if not (name is None or isinstance(name, str) or is_list_of(name, str)):
174
175
            raise TypeError(
                "name must be None, an instance of str, or a sequence of str, "
176
177
                f"but got {type(name)}"
            )
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193

        # use it as a normal method: x.register_module(module=SomeClass)
        if module is not None:
            cls._register_module(module=module, module_name=name, force=force)
            return module

        # use it as a decorator: @x.register_module()
        def _register(module):
            cls._register_module(module=module, module_name=name, force=force)
            return module

        return _register

    @classmethod
    def import_reasoning_parser(cls, plugin_path: str) -> None:
        """
194
        Import a user-defined reasoning parser by the path
195
196
197
198
199
200
201
        of the reasoning parser define file.
        """
        module_name = os.path.splitext(os.path.basename(plugin_path))[0]

        try:
            import_from_path(module_name, plugin_path)
        except Exception:
202
203
204
            logger.exception(
                "Failed to load module '%s' from %s.", module_name, plugin_path
            )
205
            return