From 02ef484972bf9a67488b983d3b528669d185c85d Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 7 May 2026 21:02:53 -0600 Subject: [PATCH] Change order --- frigate/data_processing/post/types.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frigate/data_processing/post/types.py b/frigate/data_processing/post/types.py index 0344c76169..455499257d 100644 --- a/frigate/data_processing/post/types.py +++ b/frigate/data_processing/post/types.py @@ -25,15 +25,15 @@ class ReviewMetadata(BaseModel): "that belongs in the scene field." ), ) - title: str = Field( - max_length=80, - description="Under 10 words. Name the apparent purpose or outcome of the activity together with the location involved. Do not narrate or list the sequence of actions step by step.", - ) scene: str = Field( min_length=150, max_length=600, description="A chronological narrative of what happens from start to finish, drawing directly from the items in observations.", ) + title: str = Field( + max_length=80, + description="Under 10 words. Name the apparent purpose or outcome of the activity together with the location involved. Do not narrate or list the sequence of actions step by step.", + ) shortSummary: str = Field( min_length=70, max_length=120,