Spaces:
Build error
Build error
Upload 2 files
Browse files
crewai/agents/cache/cache_hit.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
-
from
|
| 2 |
-
|
|
|
|
| 3 |
|
| 4 |
from .cache_handler import CacheHandler
|
| 5 |
|
|
@@ -10,5 +11,8 @@ class CacheHit(BaseModel):
|
|
| 10 |
class Config:
|
| 11 |
arbitrary_types_allowed = True
|
| 12 |
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
| 14 |
cache: CacheHandler = Field(description="Cache Handler for the tool")
|
|
|
|
| 1 |
+
from typing import Any
|
| 2 |
+
|
| 3 |
+
from pydantic import BaseModel, Field
|
| 4 |
|
| 5 |
from .cache_handler import CacheHandler
|
| 6 |
|
|
|
|
| 11 |
class Config:
|
| 12 |
arbitrary_types_allowed = True
|
| 13 |
|
| 14 |
+
# Making it Any instead of AgentAction to avoind
|
| 15 |
+
# pydantic v1 vs v2 incompatibility, langchain should
|
| 16 |
+
# soon be updated to pydantic v2
|
| 17 |
+
action: Any = Field(description="Action taken")
|
| 18 |
cache: CacheHandler = Field(description="Cache Handler for the tool")
|