recommend_movies
Discover personalized movie recommendations based on your preferred genre. Input a genre like action, comedy, or drama to receive curated film suggestions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
genre | No | Movie genre (optional). Examples: action, comedy, drama, horror, sci-fi, romance |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"genre": {
"description": "Movie genre (optional). Examples: action, comedy, drama, horror, sci-fi, romance",
"type": "string"
}
},
"type": "object"
}