We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4645c commit 0cdb053Copy full SHA for 0cdb053
vllm/entrypoints/openai/serving_responses.py
@@ -1000,11 +1000,6 @@ def _construct_input_messages_with_harmony(
1000
# to add the tool call request to prev_outputs so that the
1001
# parse_response_input can find the tool call request when
1002
# parsing the tool call output.
1003
- if (
1004
- isinstance(response_msg, dict)
1005
- and response_msg.get("type") == "function_call"
1006
- ):
1007
- response_msg = ResponseFunctionToolCall.model_validate(response_msg)
1008
if isinstance(response_msg, ResponseFunctionToolCall):
1009
prev_outputs.append(response_msg)
1010
return messages
0 commit comments