fix: bare dict type param in llm_result.py (mypy)

This commit is contained in:
Joao Moura
2026-04-25 15:48:02 -07:00
parent 5837f8edb8
commit fe93dfe64c

View File

@@ -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