fix: add typing.Any import to llm_result.py (mypy needs it)

This commit is contained in:
Joao Moura
2026-04-25 15:57:25 -07:00
parent fe93dfe64c
commit 086f534d4e

View File

@@ -7,6 +7,8 @@ calls without tools still return str.
from __future__ import annotations
from typing import Any
from pydantic import BaseModel, Field
from crewai.types.usage_metrics import UsageMetrics