mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-18 00:54:27 +03:00
include max_estimated_speed in api responses
This commit is contained in:
parent
edb79f3040
commit
0c78fbd32c
@ -316,7 +316,14 @@ def events_explore(limit: int = 10):
|
|||||||
k: v
|
k: v
|
||||||
for k, v in event.data.items()
|
for k, v in event.data.items()
|
||||||
if k
|
if k
|
||||||
in ["type", "score", "top_score", "description", "sub_label_score"]
|
in [
|
||||||
|
"type",
|
||||||
|
"score",
|
||||||
|
"top_score",
|
||||||
|
"description",
|
||||||
|
"sub_label_score",
|
||||||
|
"max_estimated_speed",
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"event_count": label_counts[event.label],
|
"event_count": label_counts[event.label],
|
||||||
}
|
}
|
||||||
@ -581,7 +588,15 @@ def events_search(request: Request, params: EventsSearchQueryParams = Depends())
|
|||||||
processed_event["data"] = {
|
processed_event["data"] = {
|
||||||
k: v
|
k: v
|
||||||
for k, v in event["data"].items()
|
for k, v in event["data"].items()
|
||||||
if k in ["type", "score", "top_score", "description"]
|
if k
|
||||||
|
in [
|
||||||
|
"type",
|
||||||
|
"score",
|
||||||
|
"top_score",
|
||||||
|
"description",
|
||||||
|
"sub_label_score",
|
||||||
|
"max_estimated_speed",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
if event["id"] in search_results:
|
if event["id"] in search_results:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user