Skip to content

Commit

Permalink
chore: rename variables to memory_variables (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
carenthomas authored Jan 22, 2025
1 parent 8f316bd commit b0e254b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion letta/schemas/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b0e254b

Please sign in to comment.