Get metadata for recorded episodes of a task.
Parameters
Name of the task. If not provided, all episodes for all tasks will be returned.
Response
List of recorded training episodes for a task. See TrainingEpisode for more details.
Example Usage
# List episodes for a specific task
episodes = await client.list_episodes("pick_and_place")
# List all episodes
all_episodes = await client.list_episodes()