Skip to content

Commit 60cba77

Browse files
committed
Comment out current_user_id in kwargs assignment
The assignment of 'current_user_id' to kwargs has been commented out, possibly to prevent its propagation downstream. The user ID is still stored in the instance variable 'self.current_user_id'.
1 parent b91419d commit 60cba77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/af/orchestration/human_approval_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, user_id: str, *args, **kwargs):
7575
ORCHESTRATOR_TASK_LEDGER_PLAN_UPDATE_PROMPT + plan_append
7676
)
7777
kwargs["final_answer_prompt"] = ORCHESTRATOR_FINAL_ANSWER_PROMPT + final_append
78-
kwargs["current_user_id"] = user_id # retained for downstream usage if needed
78+
#kwargs["current_user_id"] = user_id # retained for downstream usage if needed
7979

8080
self.current_user_id = user_id
8181
super().__init__(*args, **kwargs)

0 commit comments

Comments
 (0)