frigate/web/src/lib/const.ts

34 lines
453 B
TypeScript
Raw Normal View History

/** ONNX embedding models that require local model downloads. GenAI providers are not in this list. */
export const JINA_EMBEDDING_MODELS = ["jinav1", "jinav2"] as const;
export const supportedLanguageKeys = [
"en",
"es",
"pt",
2025-08-10 15:27:47 +03:00
"pt-BR",
"fr",
"de",
"it",
"ca",
"ro",
"nl",
"nb-NO",
"sv",
"zh-CN",
"yue-Hant",
"ja",
"vi",
"th",
"he",
"fa",
"ru",
"tr",
"pl",
"hr",
"sk",
"lt",
"uk",
"cs",
"hu",
];