7 lines
286 B
Python
7 lines
286 B
Python
def build_farm_alerts_timeline(sensor_id: str, context: dict | None = None, ai_bundle: dict | None = None) -> dict:
|
|
ai_bundle = ai_bundle or {}
|
|
return {
|
|
"alerts": ai_bundle.get("timeline", []),
|
|
"structuredContext": ai_bundle.get("structured_context", {}),
|
|
}
|