get_show_details
Retrieve detailed information about a TV show by providing its title. This tool supports accurate data lookup for enhanced show discovery and recommendations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
show_title | Yes | 剧集名称,用于获取详细信息 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"show_title": {
"description": "剧集名称,用于获取详细信息",
"type": "string"
}
},
"required": [
"show_title"
],
"type": "object"
}