mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 16:56:22 +02:00
566 lines
19 KiB
TypeScript
566 lines
19 KiB
TypeScript
"use client";
|
|
|
|
import { useAtomValue } from "jotai";
|
|
import {
|
|
AlertCircle,
|
|
Bot,
|
|
CheckCircle,
|
|
CircleDashed,
|
|
FileText,
|
|
ImageIcon,
|
|
RefreshCw,
|
|
RotateCcw,
|
|
Save,
|
|
Shuffle,
|
|
} from "lucide-react";
|
|
import { useEffect, useState } from "react";
|
|
import { toast } from "sonner";
|
|
import {
|
|
globalImageGenConfigsAtom,
|
|
imageGenConfigsAtom,
|
|
} from "@/atoms/image-gen-config/image-gen-config-query.atoms";
|
|
import { updateLLMPreferencesMutationAtom } from "@/atoms/new-llm-config/new-llm-config-mutation.atoms";
|
|
import {
|
|
globalNewLLMConfigsAtom,
|
|
llmPreferencesAtom,
|
|
newLLMConfigsAtom,
|
|
} from "@/atoms/new-llm-config/new-llm-config-query.atoms";
|
|
import { Alert, AlertDescription } from "@/components/ui/alert";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent } from "@/components/ui/card";
|
|
import { Label } from "@/components/ui/label";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectLabel,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { Skeleton } from "@/components/ui/skeleton";
|
|
import { getProviderIcon } from "@/lib/provider-icons";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const ROLE_DESCRIPTIONS = {
|
|
agent: {
|
|
icon: Bot,
|
|
title: "Agent LLM",
|
|
description: "Primary LLM for chat interactions and agent operations",
|
|
color: "text-blue-600 dark:text-blue-400",
|
|
bgColor: "bg-blue-500/10",
|
|
prefKey: "agent_llm_id" as const,
|
|
configType: "llm" as const,
|
|
},
|
|
document_summary: {
|
|
icon: FileText,
|
|
title: "Document Summary LLM",
|
|
description: "Handles document summarization and research synthesis",
|
|
color: "text-purple-600 dark:text-purple-400",
|
|
bgColor: "bg-purple-500/10",
|
|
prefKey: "document_summary_llm_id" as const,
|
|
configType: "llm" as const,
|
|
},
|
|
image_generation: {
|
|
icon: ImageIcon,
|
|
title: "Image Generation Model",
|
|
description: "Model used for AI image generation (DALL-E, GPT Image, etc.)",
|
|
color: "text-teal-600 dark:text-teal-400",
|
|
bgColor: "bg-teal-500/10",
|
|
prefKey: "image_generation_config_id" as const,
|
|
configType: "image" as const,
|
|
},
|
|
};
|
|
|
|
interface LLMRoleManagerProps {
|
|
searchSpaceId: number;
|
|
}
|
|
|
|
export function LLMRoleManager({ searchSpaceId }: LLMRoleManagerProps) {
|
|
// LLM configs
|
|
const {
|
|
data: newLLMConfigs = [],
|
|
isFetching: configsLoading,
|
|
error: configsError,
|
|
refetch: refreshConfigs,
|
|
} = useAtomValue(newLLMConfigsAtom);
|
|
const {
|
|
data: globalConfigs = [],
|
|
isFetching: globalConfigsLoading,
|
|
error: globalConfigsError,
|
|
} = useAtomValue(globalNewLLMConfigsAtom);
|
|
|
|
// Image gen configs
|
|
const {
|
|
data: userImageConfigs = [],
|
|
isFetching: imageConfigsLoading,
|
|
error: imageConfigsError,
|
|
} = useAtomValue(imageGenConfigsAtom);
|
|
const {
|
|
data: globalImageConfigs = [],
|
|
isFetching: globalImageConfigsLoading,
|
|
error: globalImageConfigsError,
|
|
} = useAtomValue(globalImageGenConfigsAtom);
|
|
|
|
// Preferences
|
|
const {
|
|
data: preferences = {},
|
|
isFetching: preferencesLoading,
|
|
error: preferencesError,
|
|
} = useAtomValue(llmPreferencesAtom);
|
|
|
|
const { mutateAsync: updatePreferences } = useAtomValue(updateLLMPreferencesMutationAtom);
|
|
|
|
const [assignments, setAssignments] = useState(() => ({
|
|
agent_llm_id: preferences.agent_llm_id ?? "",
|
|
document_summary_llm_id: preferences.document_summary_llm_id ?? "",
|
|
image_generation_config_id: preferences.image_generation_config_id ?? "",
|
|
}));
|
|
|
|
const [hasChanges, setHasChanges] = useState(false);
|
|
const [isSaving, setIsSaving] = useState(false);
|
|
|
|
useEffect(() => {
|
|
const newAssignments = {
|
|
agent_llm_id: preferences.agent_llm_id ?? "",
|
|
document_summary_llm_id: preferences.document_summary_llm_id ?? "",
|
|
image_generation_config_id: preferences.image_generation_config_id ?? "",
|
|
};
|
|
setAssignments(newAssignments);
|
|
setHasChanges(false);
|
|
}, [
|
|
preferences?.agent_llm_id,
|
|
preferences?.document_summary_llm_id,
|
|
preferences?.image_generation_config_id,
|
|
]);
|
|
|
|
const handleRoleAssignment = (prefKey: string, configId: string) => {
|
|
const newAssignments = {
|
|
...assignments,
|
|
[prefKey]: configId === "unassigned" ? "" : parseInt(configId),
|
|
};
|
|
|
|
setAssignments(newAssignments);
|
|
|
|
const currentPrefs = {
|
|
agent_llm_id: preferences.agent_llm_id ?? "",
|
|
document_summary_llm_id: preferences.document_summary_llm_id ?? "",
|
|
image_generation_config_id: preferences.image_generation_config_id ?? "",
|
|
};
|
|
|
|
const hasChangesNow = Object.keys(newAssignments).some(
|
|
(key) =>
|
|
newAssignments[key as keyof typeof newAssignments] !==
|
|
currentPrefs[key as keyof typeof currentPrefs]
|
|
);
|
|
|
|
setHasChanges(hasChangesNow);
|
|
};
|
|
|
|
const handleSave = async () => {
|
|
setIsSaving(true);
|
|
|
|
const toNumericOrUndefined = (val: string | number) =>
|
|
typeof val === "string" ? (val ? parseInt(val) : undefined) : val;
|
|
|
|
const numericAssignments = {
|
|
agent_llm_id: toNumericOrUndefined(assignments.agent_llm_id),
|
|
document_summary_llm_id: toNumericOrUndefined(assignments.document_summary_llm_id),
|
|
image_generation_config_id: toNumericOrUndefined(assignments.image_generation_config_id),
|
|
};
|
|
|
|
await updatePreferences({
|
|
search_space_id: searchSpaceId,
|
|
data: numericAssignments,
|
|
});
|
|
|
|
setHasChanges(false);
|
|
toast.success("Role assignments saved successfully!");
|
|
|
|
setIsSaving(false);
|
|
};
|
|
|
|
const handleReset = () => {
|
|
setAssignments({
|
|
agent_llm_id: preferences.agent_llm_id ?? "",
|
|
document_summary_llm_id: preferences.document_summary_llm_id ?? "",
|
|
image_generation_config_id: preferences.image_generation_config_id ?? "",
|
|
});
|
|
setHasChanges(false);
|
|
};
|
|
|
|
const isAssignmentComplete =
|
|
assignments.agent_llm_id !== "" &&
|
|
assignments.agent_llm_id !== null &&
|
|
assignments.agent_llm_id !== undefined &&
|
|
assignments.document_summary_llm_id !== "" &&
|
|
assignments.document_summary_llm_id !== null &&
|
|
assignments.document_summary_llm_id !== undefined &&
|
|
assignments.image_generation_config_id !== "" &&
|
|
assignments.image_generation_config_id !== null &&
|
|
assignments.image_generation_config_id !== undefined;
|
|
|
|
// Combine global and custom LLM configs
|
|
const allLLMConfigs = [
|
|
...globalConfigs.map((config) => ({ ...config, is_global: true })),
|
|
...newLLMConfigs.filter((config) => config.id && config.id.toString().trim() !== ""),
|
|
];
|
|
|
|
// Combine global and custom image gen configs
|
|
const allImageConfigs = [
|
|
...globalImageConfigs.map((config) => ({ ...config, is_global: true })),
|
|
...(userImageConfigs ?? []).filter((config) => config.id && config.id.toString().trim() !== ""),
|
|
];
|
|
|
|
const isLoading =
|
|
configsLoading ||
|
|
preferencesLoading ||
|
|
globalConfigsLoading ||
|
|
imageConfigsLoading ||
|
|
globalImageConfigsLoading;
|
|
const hasError =
|
|
configsError ||
|
|
preferencesError ||
|
|
globalConfigsError ||
|
|
imageConfigsError ||
|
|
globalImageConfigsError;
|
|
const hasAnyConfigs = allLLMConfigs.length > 0 || allImageConfigs.length > 0;
|
|
|
|
return (
|
|
<div className="space-y-5 md:space-y-6">
|
|
{/* Header actions */}
|
|
<div className="flex items-center justify-between">
|
|
<Button
|
|
variant="secondary"
|
|
size="sm"
|
|
onClick={() => refreshConfigs()}
|
|
disabled={isLoading}
|
|
className="gap-2"
|
|
>
|
|
<RefreshCw className="h-3.5 w-3.5" />
|
|
Refresh
|
|
</Button>
|
|
{isAssignmentComplete && !isLoading && !hasError && (
|
|
<Badge
|
|
variant="outline"
|
|
className="text-xs gap-1.5 border-emerald-500/30 text-emerald-700 dark:text-emerald-300 bg-emerald-500/5"
|
|
>
|
|
<CheckCircle className="h-3 w-3" />
|
|
All roles assigned
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
|
|
{/* Error Alert */}
|
|
{hasError && (
|
|
<div>
|
|
<Alert variant="destructive" className="py-3 md:py-4">
|
|
<AlertCircle className="h-3 w-3 md:h-4 md:w-4 shrink-0" />
|
|
<AlertDescription className="text-xs md:text-sm">
|
|
{(configsError?.message ?? "Failed to load LLM configurations") ||
|
|
(preferencesError?.message ?? "Failed to load preferences") ||
|
|
(globalConfigsError?.message ?? "Failed to load global configurations")}
|
|
</AlertDescription>
|
|
</Alert>
|
|
</div>
|
|
)}
|
|
|
|
{/* Loading Skeleton */}
|
|
{isLoading && (
|
|
<div className="grid gap-4 grid-cols-1 lg:grid-cols-2">
|
|
{["skeleton-a", "skeleton-b", "skeleton-c"].map((key) => (
|
|
<Card key={key} className="border-border/60">
|
|
<CardContent className="p-4 md:p-5 space-y-4">
|
|
{/* Header: icon + title + status */}
|
|
<div className="flex items-start justify-between gap-3">
|
|
<div className="flex items-center gap-3 min-w-0">
|
|
<Skeleton className="h-9 w-9 rounded-lg shrink-0" />
|
|
<div className="space-y-1.5 flex-1">
|
|
<Skeleton className="h-4 w-24 md:w-28" />
|
|
<Skeleton className="h-3 w-40 md:w-52" />
|
|
</div>
|
|
</div>
|
|
<Skeleton className="h-4 w-4 rounded-full shrink-0" />
|
|
</div>
|
|
{/* Label */}
|
|
<div className="space-y-1.5">
|
|
<Skeleton className="h-3 w-20" />
|
|
<Skeleton className="h-9 md:h-10 w-full rounded-md" />
|
|
</div>
|
|
{/* Summary block */}
|
|
<div className="rounded-lg border border-border/50 p-3 space-y-2">
|
|
<div className="flex items-center gap-2">
|
|
<Skeleton className="h-3.5 w-3.5 rounded shrink-0" />
|
|
<Skeleton className="h-3.5 w-28" />
|
|
</div>
|
|
<div className="flex items-center gap-1.5">
|
|
<Skeleton className="h-4 w-14 rounded-full" />
|
|
<Skeleton className="h-3 w-24" />
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{/* No configs warning */}
|
|
{!isLoading && !hasError && !hasAnyConfigs && (
|
|
<Alert variant="destructive" className="py-3 md:py-4">
|
|
<AlertCircle className="h-3 w-3 md:h-4 md:w-4 shrink-0" />
|
|
<AlertDescription className="text-xs md:text-sm">
|
|
No configurations found. Please add at least one LLM provider or image model in the
|
|
respective settings tabs before assigning roles.
|
|
</AlertDescription>
|
|
</Alert>
|
|
)}
|
|
|
|
{/* Role Assignment Cards */}
|
|
{!isLoading && !hasError && hasAnyConfigs && (
|
|
<div className="grid gap-4 grid-cols-1 lg:grid-cols-2">
|
|
{Object.entries(ROLE_DESCRIPTIONS).map(([key, role]) => {
|
|
const IconComponent = role.icon;
|
|
const isImageRole = role.configType === "image";
|
|
const currentAssignment = assignments[role.prefKey as keyof typeof assignments];
|
|
|
|
// Pick the right config lists based on role type
|
|
const roleGlobalConfigs = isImageRole ? globalImageConfigs : globalConfigs;
|
|
const roleUserConfigs = isImageRole
|
|
? (userImageConfigs ?? []).filter((c) => c.id && c.id.toString().trim() !== "")
|
|
: newLLMConfigs.filter((c) => c.id && c.id.toString().trim() !== "");
|
|
const roleAllConfigs = isImageRole ? allImageConfigs : allLLMConfigs;
|
|
|
|
const assignedConfig = roleAllConfigs.find((config) => config.id === currentAssignment);
|
|
const isAssigned =
|
|
currentAssignment !== "" &&
|
|
currentAssignment !== null &&
|
|
currentAssignment !== undefined;
|
|
const isAutoMode =
|
|
assignedConfig && "is_auto_mode" in assignedConfig && assignedConfig.is_auto_mode;
|
|
|
|
return (
|
|
<div key={key}>
|
|
<Card className="group relative overflow-hidden transition-all duration-200 border-border/60 hover:shadow-md h-full">
|
|
<CardContent className="p-4 md:p-5 space-y-4">
|
|
{/* Role Header */}
|
|
<div className="flex items-start justify-between gap-3">
|
|
<div className="flex items-center gap-3 min-w-0">
|
|
<div
|
|
className={cn(
|
|
"flex items-center justify-center w-9 h-9 rounded-lg shrink-0",
|
|
role.bgColor
|
|
)}
|
|
>
|
|
<IconComponent className={cn("w-4 h-4", role.color)} />
|
|
</div>
|
|
<div className="min-w-0">
|
|
<h4 className="text-sm font-semibold tracking-tight">{role.title}</h4>
|
|
<p className="text-[11px] text-muted-foreground/70 mt-0.5">
|
|
{role.description}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{isAssigned ? (
|
|
<CheckCircle className="w-4 h-4 text-emerald-500 shrink-0 mt-0.5" />
|
|
) : (
|
|
<CircleDashed className="w-4 h-4 text-muted-foreground/40 shrink-0 mt-0.5" />
|
|
)}
|
|
</div>
|
|
|
|
{/* Selector */}
|
|
<div className="space-y-1.5">
|
|
<Label className="text-xs font-medium text-muted-foreground">
|
|
Configuration
|
|
</Label>
|
|
<Select
|
|
value={currentAssignment?.toString() || "unassigned"}
|
|
onValueChange={(value) => handleRoleAssignment(role.prefKey, value)}
|
|
>
|
|
<SelectTrigger className="w-full h-9 md:h-10 text-xs md:text-sm">
|
|
<SelectValue placeholder="Select a configuration" />
|
|
</SelectTrigger>
|
|
<SelectContent className="max-w-[calc(100vw-2rem)]">
|
|
<SelectItem
|
|
value="unassigned"
|
|
className="text-xs md:text-sm py-1.5 md:py-2"
|
|
>
|
|
<span className="text-muted-foreground">Unassigned</span>
|
|
</SelectItem>
|
|
|
|
{/* Global Configurations */}
|
|
{roleGlobalConfigs.length > 0 && (
|
|
<SelectGroup>
|
|
<SelectLabel className="text-[11px] md:text-xs font-semibold text-muted-foreground px-2 py-1 md:py-1.5">
|
|
Global Configurations
|
|
</SelectLabel>
|
|
{roleGlobalConfigs.map((config) => {
|
|
const isAuto = "is_auto_mode" in config && config.is_auto_mode;
|
|
return (
|
|
<SelectItem
|
|
key={config.id}
|
|
value={config.id.toString()}
|
|
className="text-xs md:text-sm py-1.5 md:py-2"
|
|
>
|
|
<div className="flex items-center gap-1 md:gap-1.5 flex-wrap min-w-0">
|
|
{isAuto ? (
|
|
<Badge
|
|
variant="outline"
|
|
className="text-[9px] md:text-[10px] shrink-0 bg-violet-100 text-violet-700 dark:bg-violet-900/30 dark:text-violet-300 border-violet-200 dark:border-violet-700"
|
|
>
|
|
<Shuffle className="size-2 md:size-2.5 mr-0.5" />
|
|
AUTO
|
|
</Badge>
|
|
) : (
|
|
getProviderIcon(config.provider, {
|
|
className: "size-3 md:size-3.5 shrink-0",
|
|
})
|
|
)}
|
|
<span className="truncate text-xs md:text-sm">
|
|
{config.name}
|
|
</span>
|
|
{!isAuto && (
|
|
<span className="text-muted-foreground text-[10px] md:text-[11px] truncate">
|
|
({config.model_name})
|
|
</span>
|
|
)}
|
|
{isAuto && (
|
|
<Badge
|
|
variant="secondary"
|
|
className="text-[8px] md:text-[9px] shrink-0 bg-violet-100 text-violet-700 dark:bg-violet-900/30 dark:text-violet-300"
|
|
>
|
|
Recommended
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
</SelectItem>
|
|
);
|
|
})}
|
|
</SelectGroup>
|
|
)}
|
|
|
|
{/* Custom Configurations */}
|
|
{roleUserConfigs.length > 0 && (
|
|
<SelectGroup>
|
|
<SelectLabel className="text-[11px] md:text-xs font-semibold text-muted-foreground px-2 py-1 md:py-1.5">
|
|
Your Configurations
|
|
</SelectLabel>
|
|
{roleUserConfigs.map((config) => (
|
|
<SelectItem
|
|
key={config.id}
|
|
value={config.id.toString()}
|
|
className="text-xs md:text-sm py-1.5 md:py-2"
|
|
>
|
|
<div className="flex items-center gap-1 md:gap-1.5 flex-wrap min-w-0">
|
|
{getProviderIcon(config.provider, {
|
|
className: "size-3 md:size-3.5 shrink-0",
|
|
})}
|
|
<span className="truncate text-xs md:text-sm">
|
|
{config.name}
|
|
</span>
|
|
<span className="text-muted-foreground text-[10px] md:text-[11px] truncate">
|
|
({config.model_name})
|
|
</span>
|
|
</div>
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
)}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
{/* Assigned Config Summary */}
|
|
{assignedConfig && (
|
|
<div
|
|
className={cn(
|
|
"rounded-lg p-3 border",
|
|
isAutoMode
|
|
? "bg-violet-50 dark:bg-violet-900/10 border-violet-200/50 dark:border-violet-800/30"
|
|
: "bg-muted/40 border-border/50"
|
|
)}
|
|
>
|
|
{isAutoMode ? (
|
|
<div className="flex items-center gap-2">
|
|
<Shuffle
|
|
className={cn(
|
|
"w-3.5 h-3.5 shrink-0 text-violet-600 dark:text-violet-400"
|
|
)}
|
|
/>
|
|
<div className="min-w-0">
|
|
<p className="text-xs font-medium text-violet-700 dark:text-violet-300">
|
|
Auto Mode
|
|
</p>
|
|
<p className="text-[10px] text-violet-600/70 dark:text-violet-400/70 mt-0.5">
|
|
Routes across all available providers
|
|
</p>
|
|
</div>
|
|
</div>
|
|
) : (
|
|
<div className="flex items-start gap-2">
|
|
<IconComponent className="w-3.5 h-3.5 shrink-0 mt-0.5 text-muted-foreground" />
|
|
<div className="min-w-0 flex-1">
|
|
<div className="flex items-center gap-1.5 flex-wrap">
|
|
<span className="text-xs font-medium">{assignedConfig.name}</span>
|
|
{"is_global" in assignedConfig && assignedConfig.is_global && (
|
|
<Badge variant="secondary" className="text-[9px] px-1.5 py-0">
|
|
🌐 Global
|
|
</Badge>
|
|
)}
|
|
</div>
|
|
<div className="flex items-center gap-1.5 mt-1">
|
|
{getProviderIcon(assignedConfig.provider, {
|
|
className: "size-3 shrink-0",
|
|
})}
|
|
<code className="text-[10px] text-muted-foreground font-mono truncate">
|
|
{assignedConfig.model_name}
|
|
</code>
|
|
</div>
|
|
{assignedConfig.api_base && (
|
|
<p className="text-[10px] text-muted-foreground/60 mt-1 truncate">
|
|
{assignedConfig.api_base}
|
|
</p>
|
|
)}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
|
|
{/* Save / Reset Bar */}
|
|
{hasChanges && (
|
|
<div className="flex items-center justify-between gap-3 rounded-lg border border-border bg-muted/50 p-3 md:p-4">
|
|
<p className="text-xs md:text-sm text-muted-foreground">You have unsaved changes</p>
|
|
<div className="flex items-center gap-2">
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={handleReset}
|
|
disabled={isSaving}
|
|
className="h-8 text-xs gap-1.5"
|
|
>
|
|
<RotateCcw className="w-3 h-3" />
|
|
Reset
|
|
</Button>
|
|
<Button
|
|
size="sm"
|
|
onClick={handleSave}
|
|
disabled={isSaving}
|
|
className="h-8 text-xs gap-1.5"
|
|
>
|
|
<Save className="w-3 h-3" />
|
|
{isSaving ? "Saving…" : "Save Changes"}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|