feat: remove un-paginated message list on usage stats [LET-5747] (#5599)

feat: remove un-paginated message list on usage stats
This commit is contained in:
cthomas
2025-10-21 13:02:18 -07:00
committed by Caren Thomas
parent 6c27d8a1ec
commit 7b2e7e2f4c
4 changed files with 1 additions and 21 deletions

View File

@@ -22,5 +22,4 @@ class LettaUsageStatistics(BaseModel):
total_tokens: int = Field(0, description="The total number of tokens processed by the agent.")
step_count: int = Field(0, description="The number of steps taken by the agent.")
# TODO: Optional for now. This field makes everyone's lives easier
steps_messages: Optional[List[List[Message]]] = Field(None, description="The messages generated per step")
run_ids: Optional[List[str]] = Field(None, description="The background task run IDs associated with the agent interaction")