mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
306 lines
9.3 KiB
TypeScript
306 lines
9.3 KiB
TypeScript
"use client";
|
|
|
|
import { AlertCircle, Bot, Plus, Trash2 } from "lucide-react";
|
|
import { motion } from "motion/react";
|
|
import { useState } from "react";
|
|
import { toast } from "sonner";
|
|
import { Alert, AlertDescription } from "@/components/ui/alert";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import { LANGUAGES } from "@/contracts/enums/languages";
|
|
import { LLM_PROVIDERS } from "@/contracts/enums/llm-providers";
|
|
import { type CreateLLMConfig, useLLMConfigs } from "@/hooks/use-llm-configs";
|
|
|
|
import InferenceParamsEditor from "../inference-params-editor";
|
|
|
|
interface AddProviderStepProps {
|
|
searchSpaceId: number;
|
|
onConfigCreated?: () => void;
|
|
onConfigDeleted?: () => void;
|
|
}
|
|
|
|
export function AddProviderStep({
|
|
searchSpaceId,
|
|
onConfigCreated,
|
|
onConfigDeleted,
|
|
}: AddProviderStepProps) {
|
|
const { llmConfigs, createLLMConfig, deleteLLMConfig } = useLLMConfigs(searchSpaceId);
|
|
const [isAddingNew, setIsAddingNew] = useState(false);
|
|
const [formData, setFormData] = useState<CreateLLMConfig>({
|
|
name: "",
|
|
provider: "",
|
|
custom_provider: "",
|
|
model_name: "",
|
|
api_key: "",
|
|
api_base: "",
|
|
language: "English",
|
|
litellm_params: {},
|
|
search_space_id: searchSpaceId,
|
|
});
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const handleInputChange = (field: keyof CreateLLMConfig, value: string) => {
|
|
setFormData((prev) => ({ ...prev, [field]: value }));
|
|
};
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
if (!formData.name || !formData.provider || !formData.model_name || !formData.api_key) {
|
|
toast.error("Please fill in all required fields");
|
|
return;
|
|
}
|
|
|
|
setIsSubmitting(true);
|
|
const result = await createLLMConfig(formData);
|
|
setIsSubmitting(false);
|
|
|
|
if (result) {
|
|
setFormData({
|
|
name: "",
|
|
provider: "",
|
|
custom_provider: "",
|
|
model_name: "",
|
|
api_key: "",
|
|
api_base: "",
|
|
language: "English",
|
|
litellm_params: {},
|
|
search_space_id: searchSpaceId,
|
|
});
|
|
setIsAddingNew(false);
|
|
// Notify parent component that a config was created
|
|
onConfigCreated?.();
|
|
}
|
|
};
|
|
|
|
const selectedProvider = LLM_PROVIDERS.find((p) => p.value === formData.provider);
|
|
|
|
const handleParamsChange = (newParams: Record<string, number | string>) => {
|
|
setFormData((prev) => ({ ...prev, litellm_params: newParams }));
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
{/* Info Alert */}
|
|
<Alert>
|
|
<AlertCircle className="h-4 w-4" />
|
|
<AlertDescription>
|
|
Add at least one LLM provider to continue. You can configure multiple providers and choose
|
|
specific roles for each one in the next step.
|
|
</AlertDescription>
|
|
</Alert>
|
|
|
|
{/* Existing Configurations */}
|
|
{llmConfigs.length > 0 && (
|
|
<div className="space-y-4">
|
|
<h3 className="text-lg font-semibold">Your LLM Configurations</h3>
|
|
<div className="grid gap-4">
|
|
{llmConfigs.map((config) => (
|
|
<motion.div
|
|
key={config.id}
|
|
initial={{ opacity: 0, y: 10 }}
|
|
animate={{ opacity: 1, y: 0 }}
|
|
exit={{ opacity: 0, y: -10 }}
|
|
>
|
|
<Card className="border-l-4 border-l-primary">
|
|
<CardContent className="pt-4">
|
|
<div className="flex items-center justify-between">
|
|
<div className="flex-1">
|
|
<div className="flex items-center gap-2 mb-2">
|
|
<Bot className="w-4 h-4" />
|
|
<h4 className="font-medium">{config.name}</h4>
|
|
<Badge variant="secondary">{config.provider}</Badge>
|
|
</div>
|
|
<p className="text-sm text-muted-foreground">
|
|
Model: {config.model_name}
|
|
{config.language && ` • Language: ${config.language}`}
|
|
{config.api_base && ` • Base: ${config.api_base}`}
|
|
</p>
|
|
</div>
|
|
<Button
|
|
variant="ghost"
|
|
size="sm"
|
|
onClick={async () => {
|
|
const success = await deleteLLMConfig(config.id);
|
|
if (success) {
|
|
onConfigDeleted?.();
|
|
}
|
|
}}
|
|
className="text-destructive hover:text-destructive"
|
|
>
|
|
<Trash2 className="w-4 h-4" />
|
|
</Button>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</motion.div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
|
|
{/* Add New Provider */}
|
|
{!isAddingNew ? (
|
|
<Card className="border-dashed border-2 hover:border-primary/50 transition-colors">
|
|
<CardContent className="flex flex-col items-center justify-center py-12">
|
|
<Plus className="w-12 h-12 text-muted-foreground mb-4" />
|
|
<h3 className="text-lg font-semibold mb-2">Add LLM Provider</h3>
|
|
<p className="text-muted-foreground text-center mb-4">
|
|
Configure your first model provider to get started
|
|
</p>
|
|
<Button onClick={() => setIsAddingNew(true)}>
|
|
<Plus className="w-4 h-4 mr-2" />
|
|
Add Provider
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
) : (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Add New LLM Provider</CardTitle>
|
|
<CardDescription>
|
|
Configure a new language model provider for your AI assistant
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Configuration Name *</Label>
|
|
<Input
|
|
id="name"
|
|
placeholder="e.g., My OpenAI GPT-4"
|
|
value={formData.name}
|
|
onChange={(e) => handleInputChange("name", e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="provider">Provider *</Label>
|
|
<Select
|
|
value={formData.provider}
|
|
onValueChange={(value) => handleInputChange("provider", value)}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select a provider" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{LLM_PROVIDERS.map((provider) => (
|
|
<SelectItem key={provider.value} value={provider.value}>
|
|
{provider.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
|
|
{/* language */}
|
|
<div className="space-y-2">
|
|
<Label htmlFor="language">Language (Optional)</Label>
|
|
<Select
|
|
value={formData.language || "English"}
|
|
onValueChange={(value) => handleInputChange("language", value)}
|
|
>
|
|
<SelectTrigger>
|
|
<SelectValue placeholder="Select language" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{LANGUAGES.map((language) => (
|
|
<SelectItem key={language.value} value={language.value}>
|
|
{language.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
|
|
{formData.provider === "CUSTOM" && (
|
|
<div className="space-y-2">
|
|
<Label htmlFor="custom_provider">Custom Provider Name *</Label>
|
|
<Input
|
|
id="custom_provider"
|
|
placeholder="e.g., my-custom-provider"
|
|
value={formData.custom_provider}
|
|
onChange={(e) => handleInputChange("custom_provider", e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="model_name">Model Name *</Label>
|
|
<Input
|
|
id="model_name"
|
|
placeholder={selectedProvider?.example || "e.g., gpt-4"}
|
|
value={formData.model_name}
|
|
onChange={(e) => handleInputChange("model_name", e.target.value)}
|
|
required
|
|
/>
|
|
{selectedProvider && (
|
|
<p className="text-xs text-muted-foreground">
|
|
Examples: {selectedProvider.example}
|
|
</p>
|
|
)}
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="api_key">API Key *</Label>
|
|
<Input
|
|
id="api_key"
|
|
type="password"
|
|
placeholder="Your API key"
|
|
value={formData.api_key}
|
|
onChange={(e) => handleInputChange("api_key", e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="api_base">API Base URL (Optional)</Label>
|
|
<Input
|
|
id="api_base"
|
|
placeholder="e.g., https://api.openai.com/v1"
|
|
value={formData.api_base}
|
|
onChange={(e) => handleInputChange("api_base", e.target.value)}
|
|
/>
|
|
</div>
|
|
|
|
{/* Optional Inference Parameters */}
|
|
<div className="pt-4">
|
|
<InferenceParamsEditor
|
|
params={formData.litellm_params || {}}
|
|
setParams={handleParamsChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex gap-2 pt-4">
|
|
<Button type="submit" disabled={isSubmitting}>
|
|
{isSubmitting ? "Adding..." : "Add Provider"}
|
|
</Button>
|
|
<Button
|
|
type="button"
|
|
variant="outline"
|
|
onClick={() => setIsAddingNew(false)}
|
|
disabled={isSubmitting}
|
|
>
|
|
Cancel
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|