From f2a5de284b045e24fd4723fd3efe71cc97fc63c4 Mon Sep 17 00:00:00 2001 From: Chang Su Date: Tue, 12 Aug 2025 09:56:13 -0700 Subject: [PATCH] [Bugfix] Fix accuracy-test-1-gpu failure caused by `builtin_tools` (#9114) --- python/sglang/srt/entrypoints/openai/serving_chat.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/sglang/srt/entrypoints/openai/serving_chat.py b/python/sglang/srt/entrypoints/openai/serving_chat.py index 21b21bb1b..9914a4c2e 100644 --- a/python/sglang/srt/entrypoints/openai/serving_chat.py +++ b/python/sglang/srt/entrypoints/openai/serving_chat.py @@ -213,7 +213,6 @@ class OpenAIServingChat(OpenAIServingBase): add_generation_prompt=True, tools=tools, reasoning_effort=request.reasoning_effort, - builtin_tools=[], **( request.chat_template_kwargs if request.chat_template_kwargs else {} ), @@ -233,7 +232,6 @@ class OpenAIServingChat(OpenAIServingBase): add_generation_prompt=True, tools=tools, reasoning_effort=request.reasoning_effort, - builtin_tools=[], **( request.chat_template_kwargs if request.chat_template_kwargs else {} ),