mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-01 23:32:39 +00:00
feat: Add ContextualMemory to __init__
This commit is contained in:
@@ -1,6 +1,13 @@
|
|||||||
|
from .contextual.contextual_memory import ContextualMemory
|
||||||
from .entity.entity_memory import EntityMemory
|
from .entity.entity_memory import EntityMemory
|
||||||
from .long_term.long_term_memory import LongTermMemory
|
from .long_term.long_term_memory import LongTermMemory
|
||||||
from .short_term.short_term_memory import ShortTermMemory
|
from .short_term.short_term_memory import ShortTermMemory
|
||||||
from .user.user_memory import UserMemory
|
from .user.user_memory import UserMemory
|
||||||
|
|
||||||
__all__ = ["UserMemory", "EntityMemory", "LongTermMemory", "ShortTermMemory"]
|
__all__ = [
|
||||||
|
"UserMemory",
|
||||||
|
"EntityMemory",
|
||||||
|
"LongTermMemory",
|
||||||
|
"ShortTermMemory",
|
||||||
|
"ContextualMemory",
|
||||||
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user