Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkbrnd committed Feb 6, 2025
1 parent 2621bcc commit 935332c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/agno/agno/agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -2511,7 +2511,7 @@ def update_run_response_with_reasoning(
def aggregate_metrics_from_messages(self, messages: List[Message]) -> Dict[str, Any]:
aggregated_metrics: Dict[str, Any] = defaultdict(list)

# Use a defaultdict(list) to collect all values for each assisntant message
# Use a defaultdict(list) to collect all values for each assistant message
for m in messages:
if m.role == "assistant" and m.metrics is not None:
for k, v in m.metrics.items():
Expand Down

0 comments on commit 935332c

Please sign in to comment.