Improve error message when semantic search is not enabled with genai

This commit is contained in:
Josh Hawkins 2024-10-23 06:13:19 -05:00
parent fc59c83e16
commit 0d0b659741
2 changed files with 3 additions and 3 deletions

View File

@ -1015,7 +1015,7 @@ def regenerate_description(
content=(
{
"success": False,
"message": "Semantic search and generative AI are not enabled",
"message": "Semantic Search and Generative AI must be enabled to regenerate a description",
}
),
status_code=400,

View File

@ -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",
},