From 89f86b4263561e54c09936b8d4cab6b7dd084351 Mon Sep 17 00:00:00 2001 From: cthomas Date: Sat, 19 Jul 2025 21:44:47 -0700 Subject: [PATCH] feat: remove identities selectin from blocks model (#3424) --- letta/orm/block.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/orm/block.py b/letta/orm/block.py index 994a04c4..40dfcf08 100644 --- a/letta/orm/block.py +++ b/letta/orm/block.py @@ -67,7 +67,7 @@ class Block(OrganizationMixin, SqlalchemyBase): identities: Mapped[List["Identity"]] = relationship( "Identity", secondary="identities_blocks", - lazy="selectin", + lazy="raise", back_populates="blocks", passive_deletes=True, )