get_person_characters
Retrieve a list of characters voiced or portrayed by a specific person using their ID. Ideal for identifying roles of voice actors or actors in the BangumiTV database.
Instructions
List characters voiced or portrayed by a person (e.g., voice actor, actor).
Args:
person_id: The ID of the person.
Returns:
Formatted list of related characters or an error message.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
person_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"person_id": {
"title": "Person Id",
"type": "integer"
}
},
"required": [
"person_id"
],
"title": "get_person_charactersArguments",
"type": "object"
}