Runs API can now be filtered by Agent ID

The Runs API now supports filtering by agent_id to retrieve all runs and all active runs associated with a specific agent.

1from letta_client import Letta
2client = Letta(
3 token="YOUR_API_KEY",
4)
5runs = client.runs.list_active_runs(
6 agent_id="AGENT_ID",
7)