-
-
Notifications
You must be signed in to change notification settings - Fork 20.2k
[Refactor] Unify reasoning + tool-call parsing behind Parser.parse() #44267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,262 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| # SPDX-FileCopyrightText: Copyright contributors to the vLLM project | ||
|
|
||
| import json | ||
|
|
||
| import pytest | ||
|
|
||
| from vllm.entrypoints.openai.chat_completion.protocol import ChatCompletionRequest | ||
| from vllm.parser.abstract_parser import _WrappedParser | ||
| from vllm.reasoning.basic_parsers import BaseThinkingReasoningParser | ||
| from vllm.tool_parsers.hermes_tool_parser import Hermes2ProToolParser | ||
|
|
||
|
|
||
| class ThinkReasoningParser(BaseThinkingReasoningParser): | ||
| @property | ||
| def start_token(self) -> str: | ||
| return "<think>" | ||
|
|
||
| @property | ||
| def end_token(self) -> str: | ||
| return "</think>" | ||
|
|
||
|
|
||
| MODEL_OUTPUT = ( | ||
| "<think>let me think about this</think>" | ||
| '<tool_call>\n{"name": "get_weather", ' | ||
| '"arguments": {"city": "Dallas"}}\n</tool_call>' | ||
| ) | ||
|
|
||
| PLAIN_TEXT = "The weather in Dallas is sunny and 75°F." | ||
|
|
||
| TOOL_CALL_ONLY = ( | ||
| '<tool_call>\n{"name": "get_weather", ' | ||
| '"arguments": {"city": "Dallas"}}\n</tool_call>' | ||
| ) | ||
|
|
||
| TOOL_ARGUMENTS = '{"city": "Dallas"}' | ||
|
|
||
|
|
||
| @pytest.fixture(scope="module") | ||
| def tokenizer(): | ||
| from vllm.tokenizers import get_tokenizer | ||
|
|
||
| return get_tokenizer("Qwen/Qwen3-32B") | ||
|
|
||
|
|
||
| def make_request(**overrides): | ||
| base = { | ||
| "model": "test-model", | ||
| "messages": [{"role": "user", "content": "hi"}], | ||
| } | ||
| base.update(overrides) | ||
| return ChatCompletionRequest.model_validate(base) | ||
|
|
||
|
|
||
| TOOLS = [ | ||
| { | ||
| "type": "function", | ||
| "function": { | ||
| "name": "get_weather", | ||
| "parameters": {"type": "object", "properties": {}}, | ||
| }, | ||
| } | ||
| ] | ||
|
|
||
|
|
||
| def make_parser(tokenizer, reasoning=False, tool=False): | ||
| _WrappedParser.reasoning_parser_cls = ThinkReasoningParser if reasoning else None | ||
| _WrappedParser.tool_parser_cls = Hermes2ProToolParser if tool else None | ||
| return _WrappedParser(tokenizer) | ||
|
|
||
|
|
||
| @pytest.mark.parametrize( | ||
| "reasoning,tool", | ||
| [(False, False), (False, True)], | ||
| ids=["neither", "tool-only"], | ||
| ) | ||
| def test_parse_plain_text_no_reasoning_parser(tokenizer, reasoning, tool): | ||
| parser = make_parser(tokenizer, reasoning=reasoning, tool=tool) | ||
| request = make_request() | ||
| r, content, tool_calls = parser.parse(PLAIN_TEXT, request) | ||
|
|
||
| assert r is None | ||
| assert content == PLAIN_TEXT | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 0 | ||
|
|
||
|
|
||
| @pytest.mark.parametrize( | ||
| "reasoning,tool", | ||
| [(True, False), (True, True)], | ||
| ids=["reasoning-only", "both"], | ||
| ) | ||
| def test_parse_plain_text_with_reasoning_parser(tokenizer, reasoning, tool): | ||
| parser = make_parser(tokenizer, reasoning=reasoning, tool=tool) | ||
| request = make_request() | ||
| r, content, tool_calls = parser.parse(PLAIN_TEXT, request) | ||
|
|
||
| assert r == PLAIN_TEXT | ||
| assert content is None | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 0 | ||
|
|
||
|
|
||
| def test_parse_both_parsers(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=True, tool=True) | ||
| request = make_request(tools=TOOLS) | ||
| reasoning, content, tool_calls = parser.parse( | ||
| MODEL_OUTPUT, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is not None | ||
| assert "let me think about this" in reasoning | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 1 | ||
| assert tool_calls[0].name == "get_weather" | ||
| assert json.loads(tool_calls[0].arguments) == {"city": "Dallas"} | ||
| assert not content or content.strip() == "" | ||
|
|
||
|
|
||
| def test_parse_reasoning_only(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=True, tool=False) | ||
| request = make_request() | ||
| reasoning, content, tool_calls = parser.parse(MODEL_OUTPUT, request) | ||
|
|
||
| assert reasoning is not None | ||
| assert "let me think about this" in reasoning | ||
| assert content is not None | ||
| assert "<tool_call>" in content | ||
| assert "get_weather" in content | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 0 | ||
|
|
||
|
|
||
| def test_parse_tool_only(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=True) | ||
| request = make_request(tools=TOOLS) | ||
| reasoning, content, tool_calls = parser.parse( | ||
| MODEL_OUTPUT, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is None | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 1 | ||
| assert tool_calls[0].name == "get_weather" | ||
| assert json.loads(tool_calls[0].arguments) == {"city": "Dallas"} | ||
|
|
||
|
|
||
| def test_parse_named_tool_choice(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=True) | ||
| request = make_request( | ||
| tools=TOOLS, | ||
| tool_choice={ | ||
| "type": "function", | ||
| "function": {"name": "get_weather"}, | ||
| }, | ||
| ) | ||
| reasoning, content, tool_calls = parser.parse( | ||
| TOOL_ARGUMENTS, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is None | ||
| assert content is None | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 1 | ||
| assert tool_calls[0].name == "get_weather" | ||
| assert tool_calls[0].arguments == TOOL_ARGUMENTS | ||
|
|
||
|
|
||
| def test_parse_named_tool_choice_with_reasoning(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=True, tool=True) | ||
| model_output = f"<think>thinking</think>{TOOL_ARGUMENTS}" | ||
| request = make_request( | ||
| tools=TOOLS, | ||
| tool_choice={ | ||
| "type": "function", | ||
| "function": {"name": "get_weather"}, | ||
| }, | ||
| ) | ||
| reasoning, content, tool_calls = parser.parse( | ||
| model_output, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is not None | ||
| assert "thinking" in reasoning | ||
| assert content is None | ||
| assert len(tool_calls) == 1 | ||
| assert tool_calls[0].name == "get_weather" | ||
| assert tool_calls[0].arguments == TOOL_ARGUMENTS | ||
|
|
||
|
|
||
| def test_parse_required_tool_choice(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=True) | ||
| functions_json = json.dumps( | ||
| [ | ||
| {"name": "get_weather", "parameters": {"city": "Dallas"}}, | ||
| {"name": "get_time", "parameters": {"timezone": "UTC"}}, | ||
| ] | ||
| ) | ||
| request = make_request(tools=TOOLS, tool_choice="required") | ||
| reasoning, content, tool_calls = parser.parse( | ||
| functions_json, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is None | ||
| assert content is None | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 2 | ||
| assert tool_calls[0].name == "get_weather" | ||
| assert json.loads(tool_calls[0].arguments) == {"city": "Dallas"} | ||
| assert tool_calls[1].name == "get_time" | ||
| assert json.loads(tool_calls[1].arguments) == {"timezone": "UTC"} | ||
|
|
||
|
|
||
| def test_parse_named_tool_choice_content_none(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=True) | ||
| request = make_request( | ||
| tools=TOOLS, | ||
| tool_choice={ | ||
| "type": "function", | ||
| "function": {"name": "get_weather"}, | ||
| }, | ||
| ) | ||
| reasoning, content, tool_calls = parser.parse("", request, enable_auto_tools=True) | ||
| assert reasoning is None | ||
| assert content is None | ||
| assert tool_calls is not None | ||
|
|
||
|
|
||
| def test_parse_required_tool_choice_content_none(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=True) | ||
| request = make_request(tools=TOOLS, tool_choice="required") | ||
| reasoning, content, tool_calls = parser.parse("", request, enable_auto_tools=True) | ||
| assert reasoning is None | ||
| assert content is None | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 0 | ||
|
|
||
|
|
||
| def test_parse_auto_tools_no_parser(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=False) | ||
| request = make_request() | ||
| reasoning, content, tool_calls = parser.parse( | ||
| TOOL_CALL_ONLY, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is None | ||
| assert content == TOOL_CALL_ONLY | ||
| assert tool_calls is not None | ||
| assert len(tool_calls) == 0 | ||
|
|
||
|
|
||
| def test_parse_auto_tools_no_calls_returns_none(tokenizer): | ||
| parser = make_parser(tokenizer, reasoning=False, tool=True) | ||
| request = make_request(tools=TOOLS) | ||
| reasoning, content, tool_calls = parser.parse( | ||
| PLAIN_TEXT, request, enable_auto_tools=True | ||
| ) | ||
|
|
||
| assert reasoning is None | ||
| assert content == PLAIN_TEXT | ||
| assert tool_calls is None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.