Find similar footage from review item snapshots (#13662)

* Find similar footage from review item snapshots

* Include confidence score for similarity search
This commit is contained in:
Josh Hawkins
2024-09-10 13:53:25 -05:00
committed by GitHub
parent d2588d9de4
commit e016bd6900
4 changed files with 62 additions and 6 deletions

View File

@@ -25,6 +25,9 @@ export type SearchResult = {
};
};
export type PartialSearchResult = Partial<SearchResult> & { id: string };
export type SearchFilter = {
cameras?: string[];
labels?: string[];
@@ -33,4 +36,5 @@ export type SearchFilter = {
before?: number;
after?: number;
search_type?: SearchSource[];
event_id?: string;
};