mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-30 07:39:01 +03:00
CI / AMD64 Build (push) Waiting to run
CI / ARM Build (push) Waiting to run
CI / Jetson Jetpack 6 (push) Waiting to run
CI / AMD64 Extra Build (push) Blocked by required conditions
CI / ARM Extra Build (push) Blocked by required conditions
CI / Synaptics Build (push) Blocked by required conditions
CI / Assemble and push default build (push) Blocked by required conditions
* Fix Gemini tool calling * Catch openai bug * Implement tool calling tests for GenAI * Expose if embeddings are supported for a given provider
132 lines
3.9 KiB
TypeScript
132 lines
3.9 KiB
TypeScript
import type { WidgetProps } from "@rjsf/utils";
|
|
import { useEffect, useMemo } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import useSWR from "swr";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import type { ConfigFormContext } from "@/types/configForm";
|
|
import type { GenAIModelsResponse } from "@/types/chat";
|
|
|
|
const GENAI_ROLES = ["embeddings", "descriptions", "chat"] as const;
|
|
|
|
function normalizeValue(value: unknown): string[] {
|
|
if (Array.isArray(value)) {
|
|
return value.filter((item): item is string => typeof item === "string");
|
|
}
|
|
|
|
if (typeof value === "string" && value.trim()) {
|
|
return [value.trim()];
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
function getProviderKey(widgetId: string): string | undefined {
|
|
const prefix = "root_";
|
|
const suffix = "_roles";
|
|
|
|
if (!widgetId.startsWith(prefix) || !widgetId.endsWith(suffix)) {
|
|
return undefined;
|
|
}
|
|
|
|
return widgetId.slice(prefix.length, -suffix.length) || undefined;
|
|
}
|
|
|
|
export function GenAIRolesWidget(props: WidgetProps) {
|
|
const { id, value, disabled, readonly, onChange, registry } = props;
|
|
const { t } = useTranslation(["views/settings"]);
|
|
|
|
const formContext = registry?.formContext as ConfigFormContext | undefined;
|
|
const selectedRoles = useMemo(() => normalizeValue(value), [value]);
|
|
const providerKey = useMemo(() => getProviderKey(id), [id]);
|
|
|
|
const { data: genaiInfo } = useSWR<GenAIModelsResponse>("genai/models", {
|
|
revalidateOnFocus: false,
|
|
});
|
|
|
|
const embeddingsSupported = useMemo(() => {
|
|
if (!providerKey) return true;
|
|
const info = genaiInfo?.[providerKey];
|
|
return info ? info.supports_embeddings : true;
|
|
}, [genaiInfo, providerKey]);
|
|
|
|
const availableRoles = useMemo(
|
|
() =>
|
|
embeddingsSupported
|
|
? GENAI_ROLES
|
|
: GENAI_ROLES.filter((role) => role !== "embeddings"),
|
|
[embeddingsSupported],
|
|
);
|
|
|
|
const occupiedRoles = useMemo(() => {
|
|
const occupied = new Set<string>();
|
|
const fd = formContext?.formData;
|
|
|
|
if (!fd || typeof fd !== "object") return occupied;
|
|
|
|
for (const [provider, config] of Object.entries(
|
|
fd as Record<string, unknown>,
|
|
)) {
|
|
if (provider === providerKey) continue;
|
|
if (!config || typeof config !== "object" || Array.isArray(config))
|
|
continue;
|
|
|
|
for (const role of normalizeValue(
|
|
(config as Record<string, unknown>).roles,
|
|
)) {
|
|
occupied.add(role);
|
|
}
|
|
}
|
|
|
|
return occupied;
|
|
}, [formContext?.formData, providerKey]);
|
|
|
|
useEffect(() => {
|
|
if (!embeddingsSupported && selectedRoles.includes("embeddings")) {
|
|
onChange(selectedRoles.filter((role) => role !== "embeddings"));
|
|
}
|
|
}, [embeddingsSupported, selectedRoles, onChange]);
|
|
|
|
const toggleRole = (role: string, enabled: boolean) => {
|
|
if (enabled) {
|
|
if (!selectedRoles.includes(role)) {
|
|
onChange([...selectedRoles, role]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
onChange(selectedRoles.filter((item) => item !== role));
|
|
};
|
|
|
|
return (
|
|
<div className="rounded-lg border border-secondary-highlight bg-background_alt p-2 pr-0 md:max-w-md">
|
|
<div className="grid gap-2">
|
|
{availableRoles.map((role) => {
|
|
const checked = selectedRoles.includes(role);
|
|
const roleDisabled = !checked && occupiedRoles.has(role);
|
|
const label = t(`configForm.genaiRoles.options.${role}`, {
|
|
ns: "views/settings",
|
|
defaultValue: role,
|
|
});
|
|
|
|
return (
|
|
<div
|
|
key={role}
|
|
className="flex items-center justify-between rounded-md px-3 py-0"
|
|
>
|
|
<label htmlFor={`${id}-${role}`} className="text-sm">
|
|
{label}
|
|
</label>
|
|
<Switch
|
|
id={`${id}-${role}`}
|
|
checked={checked}
|
|
disabled={disabled || readonly || roleDisabled}
|
|
onCheckedChange={(enabled) => toggleRole(role, !!enabled)}
|
|
/>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|