File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
agents/agent_search/dr/nodes Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -643,9 +643,10 @@ def clarifier(
643
643
datetime_aware = True ,
644
644
)
645
645
646
- system_prompt_to_use = build_citations_system_message (
646
+ system_prompt_to_use_content = build_citations_system_message (
647
647
prompt_config
648
648
).content
649
+ system_prompt_to_use : str = cast (str , system_prompt_to_use_content )
649
650
if graph_config .inputs .project_instructions :
650
651
system_prompt_to_use = (
651
652
system_prompt_to_use
Original file line number Diff line number Diff line change @@ -503,6 +503,7 @@ def stream_chat_message_objects(
503
503
for fd in new_msg_req .current_message_files :
504
504
uid = fd .get ("user_file_id" )
505
505
if uid is not None :
506
+ uid = UUID (uid )
506
507
user_file_ids .append (uid )
507
508
508
509
# Load in user files into memory and create search tool override kwargs if needed
You can’t perform that action at this time.
0 commit comments