This commit is contained in:
rishubm
2025-10-18 22:36:20 -05:00
parent 3c961efaff
commit a92ddf06bb
45 changed files with 5106 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"""
Internal data models for processing.
"""
from pydantic import BaseModel
from typing import Dict, Any
class TelemetryTrends(BaseModel):
"""Calculated trends from enriched telemetry."""
tire_deg_rate: float # Per lap rate of change
aero_efficiency_avg: float # Moving average
ers_pattern: str # "charging", "stable", "depleting"
fuel_critical: bool # Whether fuel is a concern
driver_form: str # "excellent", "good", "inconsistent"