File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
packages/agent-mesh/src/agentmesh/cli Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -597,11 +597,6 @@ def report_agents(fmt: str, json_flag: bool):
597597 for p in filtered :
598598 history = _get_demo_history (p .peer_did )
599599 successful_tasks , failure_tasks = _categorize_tasks (history );
600- for h in history :
601- if h ["delta" ] >= 0 :
602- successful_tasks .append (h ["event" ])
603- elif h ["delta" ] < 0 :
604- failure_tasks .append (h ["event" ])
605600
606601 data .append ({
607602 "agent_id" : p .peer_did ,
@@ -627,11 +622,6 @@ def report_agents(fmt: str, json_flag: bool):
627622 for p in filtered :
628623 history = _get_demo_history (p .peer_did )
629624 successful_tasks , failure_tasks = _categorize_tasks (history );
630- for h in history :
631- if h ["delta" ] >= 0 :
632- successful_tasks .append (h ["event" ])
633- elif h ["delta" ] < 0 :
634- failure_tasks .append (h ["event" ])
635625
636626 level = _trust_level_label (p .trust_score )
637627 style = _trust_level_style (level )
You can’t perform that action at this time.
0 commit comments