analyze_activity
Extracts and analyzes Strava activity data by activity ID, returning detailed insights in a structured format for integration and usage.
Instructions
Анализ активности из Strava
Args:
activity_id: ID активности (строка или число)
Returns:
dict: Результаты анализа активности
Input Schema
Name | Required | Description | Default |
---|---|---|---|
activity_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"activity_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
],
"title": "Activity Id"
}
},
"required": [
"activity_id"
],
"title": "analyze_activityArguments",
"type": "object"
}