get_actor_details_and_credits
Retrieve detailed information and credits for a specific actor to enhance TV show recommendations and insights. Input the actor's name to access their profile and role history.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actor_name | Yes | 演员名称,如"布莱恩·科兰斯顿"、"安东尼·斯塔尔"等 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"actor_name": {
"description": "演员名称,如\"布莱恩·科兰斯顿\"、\"安东尼·斯塔尔\"等",
"type": "string"
}
},
"required": [
"actor_name"
],
"type": "object"
}