Added Modify Passage API

We’ve introduced a new API endpoint that allows you to modify existing passages within agent memory.

1from letta_client import Letta
2client = Letta(
3 token="YOUR_API_KEY",
4)
5client.agents.modify_passage(
6 agent_id="AGENT_ID",
7 memory_id="MEMORY_ID",
8 text="Updated passage content"
9)