compare_drivers
Analyze and compare Formula One driver performance by selecting season year, event, session, and specific drivers for detailed insights.
Instructions
Compare performance between multiple Formula One drivers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| drivers | Yes | Comma-separated list of driver codes (e.g., 'HAM,VER,LEC') | |
| event_identifier | Yes | Event name or round number (e.g., 'Monaco' or '7') | |
| session_name | Yes | Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3') | |
| year | Yes | Season year (e.g., 2023) |
Input Schema (JSON Schema)
{
"properties": {
"drivers": {
"description": "Comma-separated list of driver codes (e.g., 'HAM,VER,LEC')",
"type": "string"
},
"event_identifier": {
"description": "Event name or round number (e.g., 'Monaco' or '7')",
"type": "string"
},
"session_name": {
"description": "Session name (e.g., 'Race', 'Qualifying', 'Sprint', 'FP1', 'FP2', 'FP3')",
"type": "string"
},
"year": {
"description": "Season year (e.g., 2023)",
"type": "number"
}
},
"required": [
"year",
"event_identifier",
"session_name",
"drivers"
],
"type": "object"
}