mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
15 lines
310 B
Python
15 lines
310 B
Python
from typing import Any, Dict
|
|
|
|
|
|
class Storage:
|
|
"""Abstract base class defining the storage interface"""
|
|
|
|
def save(self, value: Any, metadata: Dict[str, Any]) -> None:
|
|
pass
|
|
|
|
def search(self, key: str) -> Dict[str, Any]: # type: ignore
|
|
pass
|
|
|
|
def reset(self) -> None:
|
|
pass
|