We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 354f23b commit 4d7745eCopy full SHA for 4d7745e
backend/tests/unit/onyx/chat/test_answer.py
@@ -323,9 +323,12 @@ def test_answer_with_search_no_tool_calling(
323
== mock_search_tool.build_next_prompt.return_value.build.return_value
324
)
325
326
+ user_message = (
327
+ answer_instance.graph_inputs.prompt_builder.get_user_message_content()
328
+ )
329
# Verify that get_args_for_non_tool_calling_llm was called on the mock_search_tool
330
mock_search_tool.get_args_for_non_tool_calling_llm.assert_called_once_with(
- QUERY, [], answer_instance.graph_config.tooling.primary_llm
331
+ user_message, [], answer_instance.graph_config.tooling.primary_llm
332
333
334
# Verify that the search tool's run method was called
0 commit comments