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