Skip to main content

Reindex embeddings

PUT 

https://demo.frigate.video/api/reindex

Reindexes the embeddings for all tracked objects. Requires semantic search to be enabled in the configuration. Returns a success message or an error if semantic search is not enabled.

Responses​

Successful Response

Schema
    successSuccess (boolean)required
    messageMessage (string)required
import http.client

conn = http.client.HTTPSConnection("demo.frigate.video")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("PUT", "/api/reindex", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Base URL
https://demo.frigate.video/api
ResponseClear

Click the Send API Request button above and see the response here!