From 08218112d1c43dc278a5d4e4d4044e8f1228014b Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Sun, 23 Mar 2025 15:39:09 -0700 Subject: [PATCH] fix: patch agent export by making `description` optional (#1369) --- letta/serialize_schemas/pydantic_agent_schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/serialize_schemas/pydantic_agent_schema.py b/letta/serialize_schemas/pydantic_agent_schema.py index 593c0377..a3ab28e3 100644 --- a/letta/serialize_schemas/pydantic_agent_schema.py +++ b/letta/serialize_schemas/pydantic_agent_schema.py @@ -92,7 +92,7 @@ class AgentSchema(BaseModel): agent_type: str core_memory: List[CoreMemoryBlockSchema] created_at: str - description: str + description: Optional[str] embedding_config: EmbeddingConfig groups: List[Any] identities: List[Any]