@@ -162,6 +162,10 @@ def get_tool_call_for_non_tool_calling_llm_impl(
162
162
prompt_builder : AnswerPromptBuilder | PromptSnapshot ,
163
163
llm : LLM ,
164
164
) -> tuple [Tool , dict ] | None :
165
+ user_query = prompt_builder .raw_user_query
166
+ if isinstance (prompt_builder , AnswerPromptBuilder ):
167
+ user_query = prompt_builder .get_user_message_content ()
168
+
165
169
if force_use_tool .force_use :
166
170
# if we are forcing a tool, we don't need to check which tools to run
167
171
tool = get_tool_by_name (tools , force_use_tool .tool_name )
@@ -170,7 +174,7 @@ def get_tool_call_for_non_tool_calling_llm_impl(
170
174
force_use_tool .args
171
175
if force_use_tool .args is not None
172
176
else tool .get_args_for_non_tool_calling_llm (
173
- query = prompt_builder . raw_user_query ,
177
+ query = user_query ,
174
178
history = prompt_builder .raw_message_history ,
175
179
llm = llm ,
176
180
force_run = True ,
@@ -184,7 +188,7 @@ def get_tool_call_for_non_tool_calling_llm_impl(
184
188
else :
185
189
tool_options = check_which_tools_should_run_for_non_tool_calling_llm (
186
190
tools = tools ,
187
- query = prompt_builder . raw_user_query ,
191
+ query = user_query ,
188
192
history = prompt_builder .raw_message_history ,
189
193
llm = llm ,
190
194
)
@@ -203,7 +207,7 @@ def get_tool_call_for_non_tool_calling_llm_impl(
203
207
select_single_tool_for_non_tool_calling_llm (
204
208
tools_and_args = available_tools_and_args ,
205
209
history = prompt_builder .raw_message_history ,
206
- query = prompt_builder . raw_user_query ,
210
+ query = user_query ,
207
211
llm = llm ,
208
212
)
209
213
if available_tools_and_args
0 commit comments