xlam_tool_parser.py 24 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
9
import regex as re

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

logger = init_logger(__name__)


class xLAMToolParser(ToolParser):
31
    def __init__(self, tokenizer: TokenizerLike):
Zuxin's avatar
Zuxin committed
32
33
34
35
36
37
        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
38
        self.streamed_args: list[str] = []  # Track arguments sent for each tool
Zuxin's avatar
Zuxin committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61

        # 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(
62
63
        self, model_output: str
    ) -> tuple[Optional[str], Optional[str]]:
Zuxin's avatar
Zuxin committed
64
65
66
67
68
69
70
71
        """
        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:
72
            content = model_output[: thinking_match.start() + len("</think>")].strip()
Zuxin's avatar
Zuxin committed
73
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
            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
99
                        content = re.sub(json_pattern, "", model_output).strip()
Zuxin's avatar
Zuxin committed
100
101
102
103
104
105
106
107
108
109
110
                        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
111
112
113
114
115
                if (
                    "{" in model_output
                    and "name" in model_output
                    and "arguments" in model_output
                ):
Zuxin's avatar
Zuxin committed
116
117
118
119
120
121
                    return None, model_output

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

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

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

            # 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):
151
152
153
154
155
                if (
                    not isinstance(call, dict)
                    or "name" not in call
                    or "arguments" not in call
                ):
Zuxin's avatar
Zuxin committed
156
157
158
159
160
161
162
163
                    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"],
164
165
166
167
168
                        arguments=(
                            json.dumps(call["arguments"])
                            if isinstance(call["arguments"], dict)
                            else call["arguments"]
                        ),
Zuxin's avatar
Zuxin committed
169
170
171
172
173
174
175
176
177
178
179
180
                    ),
                )
                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))
181
182
183
            return ExtractedToolCallInformation(
                tools_called=False, tool_calls=[], content=model_output
            )
Zuxin's avatar
Zuxin committed
184
185
186
187
188
189
190
191
192
193
194
195
196
197

    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.
        """
198
199
200
        # First, check for a definitive start of a tool call block.
        # This prevents premature parsing of incomplete output.
        stripped_text = current_text.strip()
201
202
203
        preprocessed_content, preprocessed_tool_calls = self.preprocess_model_output(
            current_text
        )
204
205

        # For JSON code blocks, we need to detect them earlier, even if incomplete
206
207
208
209
210
211
        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
        )
212
213
214
215

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

        if not is_tool_call_block:
Zuxin's avatar
Zuxin committed
233
234
235
236
237
238
239
240
241
242
243
244
245
            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:
246
                # Use preprocessed tool calls if available
247
248
249
                tool_calls_text = (
                    preprocessed_tool_calls if preprocessed_tool_calls else current_text
                )
250
                parsed_tools = json.loads(tool_calls_text)
Zuxin's avatar
Zuxin committed
251
252
253
254
255
256
257
258
259
                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
260
261
262
263
            if (
                hasattr(self, "current_tools_sent")  # type: ignore
                and len(self.current_tools_sent) > 0
            ):
Zuxin's avatar
Zuxin committed
264
                # If current_tools_sent is set to [False], it means the test wants us to send the name
265
266
267
268
                if (
                    len(self.current_tools_sent) == 1
                    and self.current_tools_sent[0] is False
                ):
Zuxin's avatar
Zuxin committed
269
270
271
272
273
274
275
                    # 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
276
                        tool_id = make_tool_call_id()
277
278
279
280
281
282
283
284
285
286
287
288
                        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
289
290
291
292
293
                        # 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:
294
295
296
297
298
299
300
                            self.streaming_state["sent_tools"].append(
                                {
                                    "sent_name": True,
                                    "sent_arguments_prefix": False,
                                    "sent_arguments": "",
                                }
                            )
Zuxin's avatar
Zuxin committed
301
                        else:
302
                            self.streaming_state["sent_tools"][0]["sent_name"] = True
Zuxin's avatar
Zuxin committed
303
304
305
306
                        self.current_tool_name_sent = True
                        return delta

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

            # 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
315
316
317
                json_match = re.search(
                    r"```(?:json)?\s*([\s\S]*?)(?:```|$)", current_text
                )
318
319
320
321
                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 (
322
323
                        '"name"' in potential_json and '"arguments"' in potential_json
                    ):
324
325
326
                        search_text = potential_json

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

331
            # If no complete tool names found, check for partial tool names
Zuxin's avatar
Zuxin committed
332
            if tool_count == 0:
333
334
                # Check if we're in the middle of parsing a tool name
                partial_name_pattern = r'"name"\s*:\s*"([^"]*)'
335
                partial_matches = list(re.finditer(partial_name_pattern, search_text))
336
337
338
339
340
341
                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
342
343
344

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

            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
364
365
366
367
                if (
                    next_idx < tool_count
                    and not self.streaming_state["sent_tools"][next_idx]["sent_name"]
                ):
Zuxin's avatar
Zuxin committed
368
369
                    # Update indexes
                    self.streaming_state["current_tool_index"] = next_idx
370
                    self.current_tool_id = next_idx  # For backward compatibility
Zuxin's avatar
Zuxin committed
371
372
373
374
375
376
377
378
379
                    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

380
381
382
383
384
385
386
387
388
389
390
                    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
391
                    )
392
393
                    self.streaming_state["sent_tools"][current_idx]["sent_name"] = True
                    self.current_tool_name_sent = True  # For backward compatibility
Zuxin's avatar
Zuxin committed
394
395
396
397
398
399
400
401
402
403
404
405

                    # 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 = (
406
407
                    r'"name"\s*:\s*"[^"]+"\s*,\s*"arguments"\s*:\s*\{\s*\}'
                )
408
                empty_args_match = re.search(empty_args_pattern, search_text)
Zuxin's avatar
Zuxin committed
409
410
411
412
413
414
415
416

                # 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
417
418
419
                            if not self.streaming_state["sent_tools"][current_idx][
                                "sent_arguments_prefix"
                            ]:
Zuxin's avatar
Zuxin committed
420
                                # Send empty object
421
422
423
424
425
426
                                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
427
428
429
430
431
432

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

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

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

                                return delta

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

                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

463
464
465
466
467
                    # 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)
468
469
470
                            if isinstance(parsed_tools, list) and current_idx < len(
                                parsed_tools
                            ):
471
                                current_tool = parsed_tools[current_idx]
472
473
                                if isinstance(current_tool.get("arguments"), dict):
                                    args_text = json.dumps(current_tool["arguments"])
474
                                else:
475
                                    args_text = str(current_tool.get("arguments", "{}"))
476
477
478
                        except (json.JSONDecodeError, KeyError, IndexError):
                            # Fallback to regex-based extraction
                            pass
Zuxin's avatar
Zuxin committed
479
480

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

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

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

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

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

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

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

529
530
531
532
533
534
535
536
537
538
                            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
539
540
541
542
543
544
545
546
                            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[
547
548
                                "current_tool_index"
                            ]  # For compatibility
Zuxin's avatar
Zuxin committed
549
550
551
552
553
554
555
556

            # 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)