Skip to content

Commit 34a0d24

Browse files
committed
use persona info when creating tool args
1 parent e988c13 commit 34a0d24

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

backend/onyx/chat/process_message.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -659,10 +659,10 @@ def stream_chat_message_objects(
659659
final_msg.prompt,
660660
prompt_override=prompt_override,
661661
)
662-
elif final_msg.prompt:
663-
prompt_config = PromptConfig.from_model(final_msg.prompt)
664662
else:
665-
prompt_config = PromptConfig.from_model(persona.prompts[0])
663+
prompt_config = PromptConfig.from_model(
664+
final_msg.prompt or persona.prompts[0]
665+
)
666666

667667
answer_style_config = AnswerStyleConfig(
668668
citation_config=CitationConfig(

backend/onyx/chat/tool_handling/tool_response_handler.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,10 @@ def get_tool_call_for_non_tool_calling_llm_impl(
162162
prompt_builder: AnswerPromptBuilder | PromptSnapshot,
163163
llm: LLM,
164164
) -> 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+
165169
if force_use_tool.force_use:
166170
# if we are forcing a tool, we don't need to check which tools to run
167171
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(
170174
force_use_tool.args
171175
if force_use_tool.args is not None
172176
else tool.get_args_for_non_tool_calling_llm(
173-
query=prompt_builder.raw_user_query,
177+
query=user_query,
174178
history=prompt_builder.raw_message_history,
175179
llm=llm,
176180
force_run=True,
@@ -184,7 +188,7 @@ def get_tool_call_for_non_tool_calling_llm_impl(
184188
else:
185189
tool_options = check_which_tools_should_run_for_non_tool_calling_llm(
186190
tools=tools,
187-
query=prompt_builder.raw_user_query,
191+
query=user_query,
188192
history=prompt_builder.raw_message_history,
189193
llm=llm,
190194
)
@@ -203,7 +207,7 @@ def get_tool_call_for_non_tool_calling_llm_impl(
203207
select_single_tool_for_non_tool_calling_llm(
204208
tools_and_args=available_tools_and_args,
205209
history=prompt_builder.raw_message_history,
206-
query=prompt_builder.raw_user_query,
210+
query=user_query,
207211
llm=llm,
208212
)
209213
if available_tools_and_args

0 commit comments

Comments
 (0)