From b0e254b42b653b1b4bcc684a450d813a902dca11 Mon Sep 17 00:00:00 2001 From: cthomas Date: Tue, 21 Jan 2025 17:38:39 -0800 Subject: [PATCH] chore: rename variables to memory_variables (#722) --- letta/schemas/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/schemas/agent.py b/letta/schemas/agent.py index 697734bd84..17e3ac6f73 100644 --- a/letta/schemas/agent.py +++ b/letta/schemas/agent.py @@ -139,7 +139,7 @@ class CreateAgent(BaseModel, validate_assignment=True): # tool_exec_environment_variables: Optional[Dict[str, str]] = Field( None, description="The environment variables for tool execution specific to this agent." ) - variables: Optional[Dict[str, str]] = Field(None, description="The variables that should be set for the agent.") + memory_variables: Optional[Dict[str, str]] = Field(None, description="The variables that should be set for the agent.") @field_validator("name") @classmethod