mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-08-10 21:01:10 +03:00
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
CI / Jetson Jetpack 6 (push) Waiting to run
* Pin ruff * Add python upgrade fixes This enables python upgrade checks in ruff to look for deprecated types and patterns. This namely fixes: - usage of deprecated `Typing` which is now built in - some specific exceptions which are caught and have new aliases Some specific UP checks were also ignored as they are stylistic / unimportant and likely to cause bugs * Remove async blocking calls Use asyncio.to_thread on two remaining blocking calls to fix hanging event thread loop. Enable this specific rule to block it in the future. * Use proper logging mechanism * Correctly format logs * Raise with context When raising an exception include the from context to improve debugging * Cleanup
30 lines
968 B
Python
30 lines
968 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class RenameFaceBody(BaseModel):
|
|
new_name: str = Field(description="New name for the face")
|
|
|
|
|
|
class AudioTranscriptionBody(BaseModel):
|
|
event_id: str = Field(description="ID of the event to transcribe audio for")
|
|
|
|
|
|
class DeleteFaceImagesBody(BaseModel):
|
|
ids: list[str] = Field(
|
|
description="List of image filenames to delete from the face folder"
|
|
)
|
|
|
|
|
|
class GenerateStateExamplesBody(BaseModel):
|
|
model_name: str = Field(description="Name of the classification model")
|
|
cameras: dict[str, tuple[float, float, float, float]] = Field(
|
|
description="Dictionary mapping camera names to normalized crop coordinates in [x1, y1, x2, y2] format (values 0-1)"
|
|
)
|
|
|
|
|
|
class GenerateObjectExamplesBody(BaseModel):
|
|
model_name: str = Field(description="Name of the classification model")
|
|
label: str = Field(
|
|
description="Object label to collect examples for (e.g., 'person', 'car')"
|
|
)
|