get_recommendations
Find movie recommendations based on your preferred genre, current mood, or time of day to help you select the perfect film for any occasion.
Instructions
Suggests movies based on mood, genre, or time preferences.
Args: genre: Movie genre (optional, e.g., "action", "comedy") mood: Mood description (optional, e.g., "exciting", "romantic") time_preference: Time of day preference (optional, e.g., "evening")
Returns: JSON string with movie recommendations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| genre | No | ||
| mood | No | ||
| time_preference | No |
Input Schema (JSON Schema)
{
"properties": {
"genre": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"mood": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
},
"time_preference": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}