Returns

Returns a list of EvaluationTask objects.

Example

# List tasks for an evaluation
evaluation_tasks = galtea.evaluation_tasks.list(evaluation_id="YOUR_EVALUATION_ID")

# List tasks for a session
session_tasks = galtea.evaluation_tasks.list(session_id="YOUR_SESSION_ID")

Parameters

evaluation_id
string
The ID of the evaluation for which you want to list tasks.
session_id
string
The ID of the session for which you want to list tasks.
At least one of evaluation_id or session_id must be provided.
offset
int
The number of tasks to skip before starting to collect the result set.
limit
int
The maximum number of tasks to return.