mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-09 08:08:32 +00:00
13 lines
301 B
Python
13 lines
301 B
Python
class EntityMemoryItem:
|
|
def __init__(
|
|
self,
|
|
name: str,
|
|
type: str,
|
|
description: str,
|
|
relationships: str,
|
|
):
|
|
self.name = name
|
|
self.type = type
|
|
self.description = description
|
|
self.metadata = {"relationships": relationships}
|