Get metadata for recorded episodes of a task.

Parameters

task_name
str
default:"None"

Name of the task. If not provided, all episodes for all tasks will be returned.

Response

episodes
List[TrainingEpisode]

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()