get_recommendations
Generate personalized music recommendations based on user preferences such as genre, mood, and desired number of tracks to discover tailored playlists.
Instructions
根据用户喜好获取音乐推荐
Input Schema
Name | Required | Description | Default |
---|---|---|---|
genre | No | 音乐风格 | |
limit | No | 推荐数量 | |
mood | No | 心情/氛围 |
Input Schema (JSON Schema)
{
"properties": {
"genre": {
"description": "音乐风格",
"type": "string"
},
"limit": {
"default": 10,
"description": "推荐数量",
"type": "number"
},
"mood": {
"description": "心情/氛围",
"type": "string"
}
},
"type": "object"
}