We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 459afad commit 8ebbd7fCopy full SHA for 8ebbd7f
src/agentlab/analyze/inspect_results.py
@@ -275,6 +275,9 @@ def summarize(sub_df):
275
)
276
if "stats.cum_cost" in sub_df:
277
record["cum_cost"] = sub_df["stats.cum_cost"].sum(skipna=True).round(4)
278
+ if "stats.cum_effective_cost" in sub_df:
279
+ record["cum_effective_cost"] = sub_df["stats.cum_effective_cost"].sum(skipna=True).round(4)
280
+ record.pop("cum_cost", None)
281
282
return pd.Series(record)
283
0 commit comments