mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-08 23:58:34 +00:00
Some checks failed
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Notify Downstream / notify-downstream (push) Has been cancelled
Update Test Durations / update-durations (3.10) (push) Has been cancelled
Update Test Durations / update-durations (3.11) (push) Has been cancelled
Update Test Durations / update-durations (3.12) (push) Has been cancelled
Update Test Durations / update-durations (3.13) (push) Has been cancelled
Mark stale issues and pull requests / stale (push) Has been cancelled
Co-authored-by: Lorenze Jay <63378463+lorenzejay@users.noreply.github.com>
14 lines
279 B
Python
14 lines
279 B
Python
from typing import Any
|
|
|
|
|
|
class ExternalMemoryItem:
|
|
def __init__(
|
|
self,
|
|
value: Any,
|
|
metadata: dict[str, Any] | None = None,
|
|
agent: str | None = None,
|
|
):
|
|
self.value = value
|
|
self.metadata = metadata
|
|
self.agent = agent
|