File tree Expand file tree Collapse file tree
packages/sdk/server-ai/src/api/graph Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export class ManagedAgentGraph {
4848 path : runnerResult . metrics . path ,
4949 durationMs : runnerResult . metrics . durationMs ,
5050 tokens : runnerResult . metrics . usage ,
51- nodeMetrics : this . _buildNodeMetrics ( runnerResult . metrics . nodeMetrics ) ,
51+ nodeMetrics : this . _trackNodeMetrics ( runnerResult . metrics . nodeMetrics ) ,
5252 resumptionToken : graphTracker . resumptionToken ,
5353 } ;
5454
@@ -66,7 +66,7 @@ export class ManagedAgentGraph {
6666 * Converts per-node LDAIMetrics from the runner into LDAIMetricSummary by
6767 * creating a per-node tracker, firing tracking events, and calling getSummary().
6868 */
69- private _buildNodeMetrics (
69+ private _trackNodeMetrics (
7070 nodeMetrics : Record < string , LDAIMetrics > ,
7171 ) : Record < string , LDAIMetricSummary > {
7272 const summaries : Record < string , LDAIMetricSummary > = { } ;
You can’t perform that action at this time.
0 commit comments