From 9f8b800f2b9d6ef63d33314f4785baf4fe55a438 Mon Sep 17 00:00:00 2001 From: Caren Thomas Date: Sat, 28 Dec 2024 20:12:28 -0800 Subject: [PATCH] add project id to create agent request --- letta/schemas/agent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/letta/schemas/agent.py b/letta/schemas/agent.py index 03d40350..56b2168e 100644 --- a/letta/schemas/agent.py +++ b/letta/schemas/agent.py @@ -119,6 +119,7 @@ class CreateAgent(BaseModel, validate_assignment=True): # context_window_limit: Optional[int] = Field(None, description="The context window limit used by the agent.") embedding_chunk_size: Optional[int] = Field(DEFAULT_EMBEDDING_CHUNK_SIZE, description="The embedding chunk size used by the agent.") from_template: Optional[str] = Field(None, description="The template id used to configure the agent") + project_id: Optional[str] = Field(None, description="The project id that the agent will be associated with.") @field_validator("name") @classmethod