mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-13 10:08:29 +00:00
Adds async support for tools with tests, async execution in the agent executor, and async operations for memory (with aiosqlite). Improves tool decorator typing, ensures _run backward compatibility, updates docs and docstrings, adds tests, and regenerates lockfiles.
122 lines
3.2 KiB
Python
122 lines
3.2 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
from pydantic import BaseModel
|
|
|
|
from crewai.rag.embeddings.types import EmbedderConfig
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
from crewai.agent import Agent
|
|
from crewai.task import Task
|
|
|
|
|
|
class Memory(BaseModel):
|
|
"""Base class for memory, supporting agent tags and generic metadata."""
|
|
|
|
embedder_config: EmbedderConfig | dict[str, Any] | None = None
|
|
crew: Any | None = None
|
|
|
|
storage: Any
|
|
_agent: Agent | None = None
|
|
_task: Task | None = None
|
|
|
|
def __init__(self, storage: Any, **data: Any):
|
|
super().__init__(storage=storage, **data)
|
|
|
|
@property
|
|
def task(self) -> Task | None:
|
|
"""Get the current task associated with this memory."""
|
|
return self._task
|
|
|
|
@task.setter
|
|
def task(self, task: Task | None) -> None:
|
|
"""Set the current task associated with this memory."""
|
|
self._task = task
|
|
|
|
@property
|
|
def agent(self) -> Agent | None:
|
|
"""Get the current agent associated with this memory."""
|
|
return self._agent
|
|
|
|
@agent.setter
|
|
def agent(self, agent: Agent | None) -> None:
|
|
"""Set the current agent associated with this memory."""
|
|
self._agent = agent
|
|
|
|
def save(
|
|
self,
|
|
value: Any,
|
|
metadata: dict[str, Any] | None = None,
|
|
) -> None:
|
|
"""Save a value to memory.
|
|
|
|
Args:
|
|
value: The value to save.
|
|
metadata: Optional metadata to associate with the value.
|
|
"""
|
|
metadata = metadata or {}
|
|
self.storage.save(value, metadata)
|
|
|
|
async def asave(
|
|
self,
|
|
value: Any,
|
|
metadata: dict[str, Any] | None = None,
|
|
) -> None:
|
|
"""Save a value to memory asynchronously.
|
|
|
|
Args:
|
|
value: The value to save.
|
|
metadata: Optional metadata to associate with the value.
|
|
"""
|
|
metadata = metadata or {}
|
|
await self.storage.asave(value, metadata)
|
|
|
|
def search(
|
|
self,
|
|
query: str,
|
|
limit: int = 5,
|
|
score_threshold: float = 0.6,
|
|
) -> list[Any]:
|
|
"""Search memory for relevant entries.
|
|
|
|
Args:
|
|
query: The search query.
|
|
limit: Maximum number of results to return.
|
|
score_threshold: Minimum similarity score for results.
|
|
|
|
Returns:
|
|
List of matching memory entries.
|
|
"""
|
|
results: list[Any] = self.storage.search(
|
|
query=query, limit=limit, score_threshold=score_threshold
|
|
)
|
|
return results
|
|
|
|
async def asearch(
|
|
self,
|
|
query: str,
|
|
limit: int = 5,
|
|
score_threshold: float = 0.6,
|
|
) -> list[Any]:
|
|
"""Search memory for relevant entries asynchronously.
|
|
|
|
Args:
|
|
query: The search query.
|
|
limit: Maximum number of results to return.
|
|
score_threshold: Minimum similarity score for results.
|
|
|
|
Returns:
|
|
List of matching memory entries.
|
|
"""
|
|
results: list[Any] = await self.storage.asearch(
|
|
query=query, limit=limit, score_threshold=score_threshold
|
|
)
|
|
return results
|
|
|
|
def set_crew(self, crew: Any) -> Memory:
|
|
"""Set the crew for this memory instance."""
|
|
self.crew = crew
|
|
return self
|