1. Determine the user's intent (e.g., get standings, schedule, team info).
2. Identify the relevant league, season, and team from the user's query.
3. If the season is not specified, use `get_current_season` to determine the current season ID.
4. Select the appropriate API function based on the user's intent (e.g., `get_season_standings`, `get_daily_schedule`).
5. Call the API function with the correct parameters (season ID, team ID, etc.).
6. Parse the API response and extract the relevant information.
7. Format the information into a user-friendly response.