forked from Github/frigate
Improve error message when semantic search is not enabled with genai (#14528)
This commit is contained in:
@@ -368,9 +368,9 @@ function ObjectDetailsTab({
|
||||
);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
.catch((error) => {
|
||||
toast.error(
|
||||
`Failed to call ${capitalizeAll(config?.genai.provider.replaceAll("_", " ") ?? "Generative AI")} for a new description`,
|
||||
`Failed to call ${capitalizeAll(config?.genai.provider.replaceAll("_", " ") ?? "Generative AI")} for a new description: ${error.response.data.message}`,
|
||||
{
|
||||
position: "top-center",
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user