Skip to content

Commit

Permalink
change to from_template
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahwooders committed Dec 21, 2024
1 parent 562be43 commit a514d70
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 @@ -118,7 +118,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.")
template_id: Optional[str] = Field(None, description="The template id used to configure the agent")
from_template: Optional[str] = Field(None, description="The template id used to configure the agent")

@field_validator("name")
@classmethod
Expand Down

0 comments on commit a514d70

Please sign in to comment.