analyze_player_fixtures
Evaluate the difficulty of upcoming fixtures for a specific Fantasy Premier League player to make informed team decisions. Input the player's name and desired number of fixtures for analysis.
Instructions
Analyze upcoming fixtures for a player and provide a difficulty rating
Args:
player_name: Player name to search for
num_fixtures: Number of upcoming fixtures to analyze (default: 5)
Returns:
Analysis of player's upcoming fixtures with difficulty ratings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
num_fixtures | No | ||
player_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"num_fixtures": {
"default": 5,
"title": "Num Fixtures",
"type": "integer"
},
"player_name": {
"title": "Player Name",
"type": "string"
}
},
"required": [
"player_name"
],
"title": "analyze_player_fixturesArguments",
"type": "object"
}