mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-05 01:02:37 +00:00
fix: bare dict type param in llm_result.py (mypy)
This commit is contained in:
@@ -24,7 +24,7 @@ class ToolCallRecord(BaseModel):
|
||||
"""
|
||||
|
||||
name: str
|
||||
input: dict = Field(default_factory=dict)
|
||||
input: dict[str, Any] = Field(default_factory=dict)
|
||||
output: str = ""
|
||||
duration_ms: float = 0.0
|
||||
is_error: bool = False
|
||||
|
||||
Reference in New Issue
Block a user