Skip to content

Commit

Permalink
fix: ops_trace_manager from_end_user_id (langgenius#11077)
Browse files Browse the repository at this point in the history
  • Loading branch information
horochx authored Nov 26, 2024
1 parent f1366e8 commit 9f75970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/core/ops/ops_trace_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def message_trace(self, message_id):
"ls_provider": message_data.model_provider,
"ls_model_name": message_data.model_id,
"status": message_data.status,
"from_end_user_id": message_data.from_account_id,
"from_end_user_id": message_data.from_end_user_id,
"from_account_id": message_data.from_account_id,
"agent_based": message_data.agent_based,
"workflow_run_id": message_data.workflow_run_id,
Expand Down Expand Up @@ -521,7 +521,7 @@ def suggested_question_trace(self, message_id, timer, **kwargs):
"ls_provider": message_data.model_provider,
"ls_model_name": message_data.model_id,
"status": message_data.status,
"from_end_user_id": message_data.from_account_id,
"from_end_user_id": message_data.from_end_user_id,
"from_account_id": message_data.from_account_id,
"agent_based": message_data.agent_based,
"workflow_run_id": message_data.workflow_run_id,
Expand Down Expand Up @@ -570,7 +570,7 @@ def dataset_retrieval_trace(self, message_id, timer, **kwargs):
"ls_provider": message_data.model_provider,
"ls_model_name": message_data.model_id,
"status": message_data.status,
"from_end_user_id": message_data.from_account_id,
"from_end_user_id": message_data.from_end_user_id,
"from_account_id": message_data.from_account_id,
"agent_based": message_data.agent_based,
"workflow_run_id": message_data.workflow_run_id,
Expand Down

0 comments on commit 9f75970

Please sign in to comment.