Skip to content

vllm.entrypoints.openai.utils

_ChatCompletionResponseChoiceT module-attribute

_ChatCompletionResponseChoiceT = TypeVar(
    "_ChatCompletionResponseChoiceT",
    ChatCompletionResponseChoice,
    ChatCompletionResponseStreamChoice,
)

maybe_filter_parallel_tool_calls

maybe_filter_parallel_tool_calls(
    choice: _ChatCompletionResponseChoiceT,
    request: ChatCompletionRequest,
) -> _ChatCompletionResponseChoiceT

Filter to first tool call only when parallel_tool_calls is False.

Source code in vllm/entrypoints/openai/utils.py
def maybe_filter_parallel_tool_calls(
    choice: _ChatCompletionResponseChoiceT, request: ChatCompletionRequest
) -> _ChatCompletionResponseChoiceT:
    """Filter to first tool call only when parallel_tool_calls is False."""

    if request.parallel_tool_calls:
        return choice

    if isinstance(choice, ChatCompletionResponseChoice) and choice.message.tool_calls:
        choice.message.tool_calls = choice.message.tool_calls[:1]
    elif (
        isinstance(choice, ChatCompletionResponseStreamChoice)
        and choice.delta.tool_calls
    ):
        choice.delta.tool_calls = [
            tool_call for tool_call in choice.delta.tool_calls if tool_call.index == 0
        ]

    return choice