list_redteam_tasks
Retrieve and filter red team tasks by status using this tool to monitor and manage AI safety and prompt auditing activities in real-time.
Instructions
List all redteam tasks, optionally filtered by status.
Args: status: The status to filter tasks by (e.g., "Finished"). If None, list all tasks.
Returns: A dictionary containing the list of redteam tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
status | No |
Input Schema (JSON Schema)
{
"properties": {
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"title": "list_redteam_tasksArguments",
"type": "object"
}