agent_memory_collection
Associative table for agent memory collection relationship.
This module defines the AgentMemoryCollection
class, which represents an associative
table for the M:N relationship between AI agents and memory memory collections.
Attributes
Classes
AgentMemoryCollection
Bases: Base
Associative table for agent memory collection relationship
Attributes
agent_pkid
class-attribute
instance-attribute
agent_pkid: Mapped[str] = mapped_column(
ForeignKey("agent.pkid"),
primary_key=True,
comment="AI agent identifier",
)
create_ts
class-attribute
instance-attribute
create_ts: Mapped[datetime] = mapped_column(
server_default=now(), comment="Record create timestamp"
)