From 841097d3ee0f33fbfda25c201fb77db78546bfa8 Mon Sep 17 00:00:00 2001 From: Kian Jones <11655409+kianjones9@users.noreply.github.com> Date: Wed, 30 Apr 2025 14:12:11 -0700 Subject: [PATCH] feat(ci): Build and Use SDK When There Are On-Branch Changes (#1924) --- letta/schemas/agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/letta/schemas/agent.py b/letta/schemas/agent.py index caf7b3cd..13f74d82 100644 --- a/letta/schemas/agent.py +++ b/letta/schemas/agent.py @@ -56,7 +56,6 @@ class AgentState(OrmMetadataBase, validate_assignment=True): name: str = Field(..., description="The name of the agent.") # tool rules tool_rules: Optional[List[ToolRule]] = Field(default=None, description="The list of tool rules.") - # in-context memory message_ids: Optional[List[str]] = Field(default=None, description="The ids of the messages in the agent's in-context memory.")