download_torrent
Download torrent files using URLs or magnet links, with options to specify save location, assign categories and tags, and control download state.
Instructions
Download a torrent by URL or magnet link.
Args: url: Torrent URL or magnet link save_path: Directory to save the torrent (optional) category: Category to assign to the torrent (optional) tags: Comma-separated tags to assign (optional) paused: Start torrent in paused state (default: False)
Returns: Status information about the download
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | ||
paused | No | ||
save_path | No | ||
tags | No | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": null,
"type": "string"
},
"paused": {
"default": false,
"type": "boolean"
},
"save_path": {
"default": null,
"type": "string"
},
"tags": {
"default": null,
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}