From 271051f15b051cd03890ccbca411649a61e9260e Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 24 Aug 2026 13:05:57 -0500 Subject: [PATCH] don't migrate embeddings as a valid role for genai providers (#24086) --- frigate/util/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/util/config.py b/frigate/util/config.py index 3e093a9783..3c7f0ca8d9 100644 --- a/frigate/util/config.py +++ b/frigate/util/config.py @@ -533,7 +533,7 @@ def migrate_018_0(config: dict[str, dict[str, Any]]) -> dict[str, dict[str, Any] genai = new_config.get("genai") if genai and genai.get("provider"): - genai["roles"] = ["embeddings", "descriptions", "chat"] + genai["roles"] = ["descriptions", "chat"] new_config["genai"] = {"default": genai} # Remove deprecated sync_recordings from global record config