Added List Run Steps API

We’ve introduced a new API endpoint that allows you to list all steps associated with a specific run. This feature makes it easier to track and analyze the sequence of steps performed during a run.

1from letta_client import Letta
2client = Letta(
3 token="YOUR_API_KEY",
4)
5steps = client.runs.list_run_steps(
6 run_id="RUN_ID",
7)
8for step in steps:
9 print(f"Step ID: {step.id}, Tokens: {step.total_tokens}")