xlam_tool_parser.py 24.1 KB
Newer Older
Zuxin's avatar
Zuxin committed
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
Zuxin's avatar
Zuxin committed
3
4
5
# ruff: noqa
import json
from collections.abc import Sequence
Reid's avatar
Reid committed
6
from typing import Any, Optional, Union
Zuxin's avatar
Zuxin committed
7

8
import regex as re
9
from vllm.entrypoints.openai.chat_completion.protocol import (
10
    ChatCompletionRequest,
11
12
13
)
from vllm.entrypoints.chat_utils import make_tool_call_id
from vllm.entrypoints.openai.engine.protocol import (
14
15
16
17
18
19
20
    DeltaFunctionCall,
    DeltaMessage,
    DeltaToolCall,
    ExtractedToolCallInformation,
    FunctionCall,
    ToolCall,
)
21
from vllm.tool_parsers.abstract_tool_parser import (
22
23
    ToolParser,
)
Zuxin's avatar
Zuxin committed
24
from vllm.logger import init_logger
25
from vllm.tokenizers import TokenizerLike
Zuxin's avatar
Zuxin committed
26
27
28
29
30
31
from vllm.utils import random_uuid

logger = init_logger(__name__)


class xLAMToolParser(ToolParser):
32
    def __init__(self, tokenizer: TokenizerLike):
Zuxin's avatar
Zuxin committed
33
34
35
36
37
38
        super().__init__(tokenizer)

        # Initialize state for streaming mode
        self.prev_tool_calls: list[dict] = []
        self.current_tool_id = -1
        self.current_tool_name_sent = False
39
        self.streamed_args: list[str] = []  # Track arguments sent for each tool
Zuxin's avatar
Zuxin committed
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62

        # For backward compatibility with tests
        self.current_tools_sent: list[bool] = []

        # For backward compatibility with serving code
        self.prev_tool_call_arr = []

        # Regex patterns for preprocessing
        self.json_code_block_patterns = [
            r"```(?:json)?\s*([\s\S]*?)```",
            r"\[TOOL_CALLS\]([\s\S]*?)(?=\n|$)",
            r"<tool_call>([\s\S]*?)</tool_call>",
        ]
        self.thinking_tag_pattern = r"</think>([\s\S]*)"

        # Define streaming state type to be initialized later
        self.streaming_state: dict[str, Any] = {
            "current_tool_index": -1,
            "tool_ids": [],
            "sent_tools": [],
        }

    def preprocess_model_output(
63
64
        self, model_output: str
    ) -> tuple[Optional[str], Optional[str]]:
Zuxin's avatar
Zuxin committed
65
66
67
68
69
70
71
72
        """
        Preprocess the model output to extract content and potential tool calls.
        Returns:
            Tuple of (content, potential_tool_calls_json)
        """
        # Check for thinking tag
        thinking_match = re.search(self.thinking_tag_pattern, model_output)
        if thinking_match:
73
            content = model_output[: thinking_match.start() + len("</think>")].strip()
Zuxin's avatar
Zuxin committed
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
            thinking_content = thinking_match.group(1).strip()

            # Try to parse the thinking content as JSON
            try:
                json.loads(thinking_content)
                return content, thinking_content
            except json.JSONDecodeError:
                # If can't parse as JSON, look for JSON code blocks
                for json_pattern in self.json_code_block_patterns:
                    json_matches = re.findall(json_pattern, thinking_content)
                    if json_matches:
                        for json_str in json_matches:
                            try:
                                json.loads(json_str)
                                return content, json_str
                            except json.JSONDecodeError:
                                continue

        # Check for JSON code blocks in the entire output
        for json_pattern in self.json_code_block_patterns:
            json_matches = re.findall(json_pattern, model_output)
            if json_matches:
                for json_str in json_matches:
                    try:
                        json.loads(json_str)
                        # Extract content by removing the JSON code block
100
                        content = re.sub(json_pattern, "", model_output).strip()
Zuxin's avatar
Zuxin committed
101
102
103
104
105
106
107
108
109
110
111
                        return content, json_str
                    except json.JSONDecodeError:
                        continue

        # If the entire output is a valid JSON array or looks like one, treat it as tool calls
        if model_output.strip().startswith("["):
            try:
                json.loads(model_output)
                return None, model_output
            except json.JSONDecodeError:
                # Even if it's not valid JSON yet, it might be a tool call in progress
112
113
114
115
116
                if (
                    "{" in model_output
                    and "name" in model_output
                    and "arguments" in model_output
                ):
Zuxin's avatar
Zuxin committed
117
118
119
120
121
122
                    return None, model_output

        # If no tool calls found, return the original output as content
        return model_output, None

    def extract_tool_calls(
123
124
        self, model_output: str, request: ChatCompletionRequest
    ) -> ExtractedToolCallInformation:
Zuxin's avatar
Zuxin committed
125
126
127
128
129
        """
        Extract tool calls from a complete model output.
        """
        try:
            # Preprocess the model output
130
            content, potential_tool_calls = self.preprocess_model_output(model_output)
Zuxin's avatar
Zuxin committed
131
132

            if not potential_tool_calls:
133
134
135
                return ExtractedToolCallInformation(
                    tools_called=False, tool_calls=[], content=content
                )
Zuxin's avatar
Zuxin committed
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151

            # Parse the potential tool calls as JSON
            tool_calls_data = json.loads(potential_tool_calls)

            # Ensure it's an array
            if not isinstance(tool_calls_data, list):
                logger.debug("Tool calls data is not an array")
                return ExtractedToolCallInformation(
                    tools_called=False,
                    tool_calls=[],
                    content=content or model_output,
                )

            tool_calls: list[ToolCall] = []

            for idx, call in enumerate(tool_calls_data):
152
153
154
155
156
                if (
                    not isinstance(call, dict)
                    or "name" not in call
                    or "arguments" not in call
                ):
Zuxin's avatar
Zuxin committed
157
158
159
160
161
162
163
164
                    logger.debug("Invalid tool call format at index %d", idx)
                    continue

                tool_call = ToolCall(
                    id=f"call_{idx}_{random_uuid()}",
                    type="function",
                    function=FunctionCall(
                        name=call["name"],
165
166
167
168
169
                        arguments=(
                            json.dumps(call["arguments"])
                            if isinstance(call["arguments"], dict)
                            else call["arguments"]
                        ),
Zuxin's avatar
Zuxin committed
170
171
172
173
174
175
176
177
178
179
180
181
                    ),
                )
                tool_calls.append(tool_call)

            return ExtractedToolCallInformation(
                tools_called=len(tool_calls) > 0,
                tool_calls=tool_calls,
                content=content,
            )

        except Exception as e:
            logger.exception("Error extracting tool calls: %s", str(e))
182
183
184
            return ExtractedToolCallInformation(
                tools_called=False, tool_calls=[], content=model_output
            )
Zuxin's avatar
Zuxin committed
185
186
187
188
189
190
191
192
193
194
195
196
197
198

    def extract_tool_calls_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],
        request: ChatCompletionRequest,
    ) -> Union[DeltaMessage, None]:
        """
        Extract tool calls for streaming mode.
        """
199
200
201
        # First, check for a definitive start of a tool call block.
        # This prevents premature parsing of incomplete output.
        stripped_text = current_text.strip()
202
203
204
        preprocessed_content, preprocessed_tool_calls = self.preprocess_model_output(
            current_text
        )
205
206

        # For JSON code blocks, we need to detect them earlier, even if incomplete
207
208
209
210
211
212
        has_potential_json_block = (
            "```json" in current_text
            or "```\n[" in current_text
            or "[TOOL_CALLS]" in current_text
            or "<tool_call>" in current_text
        )
213
214
215
216

        is_tool_call_block = (
            stripped_text.startswith("[")
            or stripped_text.startswith("<tool_call>")
217
218
            or stripped_text.startswith("[TOOL_CALLS]")
            or
219
            # Check if we have thinking tags with JSON-like content following
220
221
            ("</think>[" in current_text)
            or
222
            # Check if the text contains a JSON array after preprocessing
223
224
            preprocessed_tool_calls is not None
            or
225
            # For JSON code blocks, detect early if we see enough structure
226
227
228
229
230
231
            (
                has_potential_json_block
                and '"name"' in current_text
                and '"arguments"' in current_text
            )
        )
232
233

        if not is_tool_call_block:
Zuxin's avatar
Zuxin committed
234
235
236
237
238
239
240
241
242
243
244
245
246
            return DeltaMessage(content=delta_text)

        try:
            # Initialize streaming state if not exists
            if not hasattr(self, "streaming_state"):
                self.streaming_state = {
                    "current_tool_index": -1,
                    "tool_ids": [],
                    "sent_tools": [],  # Track complete state of each tool
                }

            # Try parsing as JSON to check for complete tool calls
            try:
247
                # Use preprocessed tool calls if available
248
249
250
                tool_calls_text = (
                    preprocessed_tool_calls if preprocessed_tool_calls else current_text
                )
251
                parsed_tools = json.loads(tool_calls_text)
Zuxin's avatar
Zuxin committed
252
253
254
255
256
257
258
259
260
                if isinstance(parsed_tools, list):
                    # Update our tool array for next time
                    self.prev_tool_call_arr = parsed_tools
            except json.JSONDecodeError:
                # Not complete JSON yet, use regex for partial parsing
                pass

            # Check for test-specific state setup (current_tools_sent)
            # This handles the case where tests manually set current_tools_sent
261
262
263
264
            if (
                hasattr(self, "current_tools_sent")  # type: ignore
                and len(self.current_tools_sent) > 0
            ):
Zuxin's avatar
Zuxin committed
265
                # If current_tools_sent is set to [False], it means the test wants us to send the name
266
267
268
269
                if (
                    len(self.current_tools_sent) == 1
                    and self.current_tools_sent[0] is False
                ):
Zuxin's avatar
Zuxin committed
270
271
272
273
274
275
276
                    # Extract the function name using regex
                    name_pattern = r'"name"\s*:\s*"([^"]+)"'
                    name_match = re.search(name_pattern, current_text)
                    if name_match:
                        function_name = name_match.group(1)

                        # The test expects us to send just the name first
277
                        tool_id = make_tool_call_id()
278
279
280
281
282
283
284
285
286
287
288
289
                        delta = DeltaMessage(
                            tool_calls=[
                                DeltaToolCall(
                                    index=0,
                                    type="function",
                                    id=tool_id,
                                    function=DeltaFunctionCall(
                                        name=function_name
                                    ).model_dump(exclude_none=True),  # type: ignore
                                )
                            ]
                        )
Zuxin's avatar
Zuxin committed
290
291
292
293
294
                        # Update state to reflect that we've sent the name
                        self.current_tools_sent = [True]
                        self.current_tool_id = 0
                        self.streaming_state["current_tool_index"] = 0
                        if len(self.streaming_state["sent_tools"]) == 0:
295
296
297
298
299
300
301
                            self.streaming_state["sent_tools"].append(
                                {
                                    "sent_name": True,
                                    "sent_arguments_prefix": False,
                                    "sent_arguments": "",
                                }
                            )
Zuxin's avatar
Zuxin committed
302
                        else:
303
                            self.streaming_state["sent_tools"][0]["sent_name"] = True
Zuxin's avatar
Zuxin committed
304
305
306
307
                        self.current_tool_name_sent = True
                        return delta

            # Use regex to identify tool calls in the output
308
            # Use preprocessed tool calls text for better parsing, but also try to extract from incomplete JSON blocks
309
310
311
            search_text = (
                preprocessed_tool_calls if preprocessed_tool_calls else current_text
            )
312
313
314
315

            # For JSON code blocks that aren't complete yet, try to extract the JSON content
            if not preprocessed_tool_calls and has_potential_json_block:
                # Try to extract the JSON array from within the code block
316
317
318
                json_match = re.search(
                    r"```(?:json)?\s*([\s\S]*?)(?:```|$)", current_text
                )
319
320
321
322
                if json_match:
                    potential_json = json_match.group(1).strip()
                    # Use this as search text even if it's incomplete
                    if potential_json.startswith("[") and (
323
324
                        '"name"' in potential_json and '"arguments"' in potential_json
                    ):
325
326
327
                        search_text = potential_json

            # Try to find complete tool names first
Zuxin's avatar
Zuxin committed
328
            name_pattern = r'"name"\s*:\s*"([^"]+)"'
329
            name_matches = list(re.finditer(name_pattern, search_text))
Zuxin's avatar
Zuxin committed
330
331
            tool_count = len(name_matches)

332
            # If no complete tool names found, check for partial tool names
Zuxin's avatar
Zuxin committed
333
            if tool_count == 0:
334
335
                # Check if we're in the middle of parsing a tool name
                partial_name_pattern = r'"name"\s*:\s*"([^"]*)'
336
                partial_matches = list(re.finditer(partial_name_pattern, search_text))
337
338
339
340
341
342
                if partial_matches:
                    # We have a partial tool name - not ready to emit yet
                    return None
                else:
                    # No tools found at all
                    return None
Zuxin's avatar
Zuxin committed
343
344
345

            # Ensure our state arrays are large enough
            while len(self.streaming_state["sent_tools"]) < tool_count:
346
347
348
349
350
351
352
                self.streaming_state["sent_tools"].append(
                    {
                        "sent_name": False,
                        "sent_arguments_prefix": False,
                        "sent_arguments": "",
                    }
                )
Zuxin's avatar
Zuxin committed
353
354
355
356
357
358
359
360
361
362
363
364

            while len(self.streaming_state["tool_ids"]) < tool_count:
                self.streaming_state["tool_ids"].append(None)

            # Determine if we need to move to a new tool
            current_idx = self.streaming_state["current_tool_index"]

            # If we haven't processed any tool yet or current tool is complete, move to next
            if current_idx == -1 or current_idx < tool_count - 1:
                next_idx = current_idx + 1

                # If tool at next_idx has not been sent yet
365
366
367
368
                if (
                    next_idx < tool_count
                    and not self.streaming_state["sent_tools"][next_idx]["sent_name"]
                ):
Zuxin's avatar
Zuxin committed
369
370
                    # Update indexes
                    self.streaming_state["current_tool_index"] = next_idx
371
                    self.current_tool_id = next_idx  # For backward compatibility
Zuxin's avatar
Zuxin committed
372
373
374
375
376
377
378
379
380
                    current_idx = next_idx

                    # Extract the tool name
                    tool_name = name_matches[current_idx].group(1)

                    # Generate ID and send tool name
                    tool_id = f"call_{current_idx}_{random_uuid()}"
                    self.streaming_state["tool_ids"][current_idx] = tool_id

381
382
383
384
385
386
387
388
389
390
391
                    delta = DeltaMessage(
                        tool_calls=[
                            DeltaToolCall(
                                index=current_idx,
                                type="function",
                                id=tool_id,
                                function=DeltaFunctionCall(name=tool_name).model_dump(
                                    exclude_none=True
                                ),  # type: ignore
                            )
                        ]
Zuxin's avatar
Zuxin committed
392
                    )
393
394
                    self.streaming_state["sent_tools"][current_idx]["sent_name"] = True
                    self.current_tool_name_sent = True  # For backward compatibility
Zuxin's avatar
Zuxin committed
395
396
397
398
399
400
401
402
403
404
405
406

                    # Keep track of streamed args for backward compatibility
                    while len(self.streamed_args) <= current_idx:
                        self.streamed_args.append("")

                    return delta

            # Process arguments for the current tool
            if current_idx >= 0 and current_idx < tool_count:
                # Support both regular and empty argument objects
                # First, check for the empty arguments case: "arguments": {}
                empty_args_pattern = (
407
408
                    r'"name"\s*:\s*"[^"]+"\s*,\s*"arguments"\s*:\s*\{\s*\}'
                )
409
                empty_args_match = re.search(empty_args_pattern, search_text)
Zuxin's avatar
Zuxin committed
410
411
412
413
414
415
416
417

                # Check if this tool has empty arguments
                if empty_args_match and empty_args_match.start() > 0:
                    # Find which tool this empty arguments belongs to
                    empty_args_tool_idx = 0
                    for i in range(tool_count):
                        if i == current_idx:
                            # If this is our current tool and it has empty arguments
418
419
420
                            if not self.streaming_state["sent_tools"][current_idx][
                                "sent_arguments_prefix"
                            ]:
Zuxin's avatar
Zuxin committed
421
                                # Send empty object
422
423
424
425
426
427
                                self.streaming_state["sent_tools"][current_idx][
                                    "sent_arguments_prefix"
                                ] = True
                                self.streaming_state["sent_tools"][current_idx][
                                    "sent_arguments"
                                ] = "{}"
Zuxin's avatar
Zuxin committed
428
429
430
431
432
433

                                # Update streamed_args for backward compatibility
                                while len(self.streamed_args) <= current_idx:
                                    self.streamed_args.append("")
                                self.streamed_args[current_idx] += "{}"

434
435
436
437
438
439
440
441
442
443
                                delta = DeltaMessage(
                                    tool_calls=[
                                        DeltaToolCall(
                                            index=current_idx,
                                            function=DeltaFunctionCall(
                                                arguments="{}"
                                            ).model_dump(exclude_none=True),  # type: ignore
                                        )
                                    ]
                                )
Zuxin's avatar
Zuxin committed
444
445
446

                                # Move to next tool if available
                                if current_idx < tool_count - 1:
447
                                    self.streaming_state["current_tool_index"] += 1
Zuxin's avatar
Zuxin committed
448
                                    self.current_tool_id = self.streaming_state[
449
450
                                        "current_tool_index"
                                    ]
Zuxin's avatar
Zuxin committed
451
452
453
454
455

                                return delta

                # Extract arguments for current tool using regex for non-empty arguments
                args_pattern = r'"name"\s*:\s*"[^"]+"\s*,\s*"arguments"\s*:\s*(\{(?:[^{}]|(?:\{[^{}]*\}))*\})'
456
                args_matches = list(re.finditer(args_pattern, search_text))
Zuxin's avatar
Zuxin committed
457
458
459
460
461
462
463

                if current_idx < len(args_matches):
                    args_text = args_matches[current_idx].group(1)

                    # Handle transition between tools
                    is_last_tool = current_idx == tool_count - 1

464
465
466
467
468
                    # For multiple tools, extract only the arguments for the current tool
                    if tool_count > 1:
                        # Parse the entire JSON structure to properly extract arguments for each tool
                        try:
                            parsed_tools = json.loads(search_text)
469
470
471
                            if isinstance(parsed_tools, list) and current_idx < len(
                                parsed_tools
                            ):
472
                                current_tool = parsed_tools[current_idx]
473
474
                                if isinstance(current_tool.get("arguments"), dict):
                                    args_text = json.dumps(current_tool["arguments"])
475
                                else:
476
                                    args_text = str(current_tool.get("arguments", "{}"))
477
478
479
                        except (json.JSONDecodeError, KeyError, IndexError):
                            # Fallback to regex-based extraction
                            pass
Zuxin's avatar
Zuxin committed
480
481

                    # If arguments haven't been sent yet
482
483
484
                    sent_args = self.streaming_state["sent_tools"][current_idx][
                        "sent_arguments"
                    ]
Zuxin's avatar
Zuxin committed
485
486
487

                    # If we haven't sent the opening bracket yet
                    if not self.streaming_state["sent_tools"][current_idx][
488
489
                        "sent_arguments_prefix"
                    ] and args_text.startswith("{"):
Zuxin's avatar
Zuxin committed
490
                        self.streaming_state["sent_tools"][current_idx][
491
492
                            "sent_arguments_prefix"
                        ] = True
Zuxin's avatar
Zuxin committed
493
                        self.streaming_state["sent_tools"][current_idx][
494
495
                            "sent_arguments"
                        ] = "{"
Zuxin's avatar
Zuxin committed
496
497
498
499
500
501

                        # Update streamed_args for backward compatibility
                        while len(self.streamed_args) <= current_idx:
                            self.streamed_args.append("")
                        self.streamed_args[current_idx] += "{"

502
503
504
505
506
507
508
509
510
511
                        delta = DeltaMessage(
                            tool_calls=[
                                DeltaToolCall(
                                    index=current_idx,
                                    function=DeltaFunctionCall(
                                        arguments="{"
                                    ).model_dump(exclude_none=True),  # type: ignore
                                )
                            ]
                        )
Zuxin's avatar
Zuxin committed
512
513
514
515
516
                        return delta

                    # If we need to send more arguments
                    if args_text.startswith(sent_args):
                        # Calculate what part of arguments we need to send
517
                        args_diff = args_text[len(sent_args) :]
Zuxin's avatar
Zuxin committed
518
519
520
521

                        if args_diff:
                            # Update our state
                            self.streaming_state["sent_tools"][current_idx][
522
523
                                "sent_arguments"
                            ] = args_text
Zuxin's avatar
Zuxin committed
524
525
526
527
528
529

                            # Update streamed_args for backward compatibility
                            while len(self.streamed_args) <= current_idx:
                                self.streamed_args.append("")
                            self.streamed_args[current_idx] += args_diff

530
531
532
533
534
535
536
537
538
539
                            delta = DeltaMessage(
                                tool_calls=[
                                    DeltaToolCall(
                                        index=current_idx,
                                        function=DeltaFunctionCall(
                                            arguments=args_diff
                                        ).model_dump(exclude_none=True),  # type: ignore
                                    )
                                ]
                            )
Zuxin's avatar
Zuxin committed
540
541
542
543
544
545
546
547
                            return delta

                    # If the tool's arguments are complete, check if we need to move to the next tool
                    if args_text.endswith("}") and args_text == sent_args:
                        # This tool is complete, move to the next one in the next iteration
                        if current_idx < tool_count - 1:
                            self.streaming_state["current_tool_index"] += 1
                            self.current_tool_id = self.streaming_state[
548
549
                                "current_tool_index"
                            ]  # For compatibility
Zuxin's avatar
Zuxin committed
550
551
552
553
554
555
556
557

            # If we got here, we couldn't determine what to stream next
            return None

        except Exception as e:
            logger.exception(f"Error in streaming tool calls: {e}")
            # If we encounter an error, just return the delta text as regular content
            return DeltaMessage(content=delta_text)