* update settings update api to allow changing model provider config * use react hook form * make settings page small width * re-use the onboarding forms instead of rolling a custom one * issue * remove test * make custom forms with react-hook-form * replace the updateFlow mutation with updateSettings * show all the model providers * revert changes to onboarding forms * disabled state styles for providers * break model selectors into their own file * use existing selector component, use settings endpoint instead of onboarding, clean up form styles * revert changes to openai onboarding * small form changes
129 lines
3.7 KiB
TypeScript
129 lines
3.7 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useFormContext } from "react-hook-form";
|
|
import { LabelWrapper } from "@/components/label-wrapper";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Switch } from "@/components/ui/switch";
|
|
import { useGetOpenAIModelsQuery } from "@/app/api/queries/useGetModelsQuery";
|
|
import { useDebouncedValue } from "@/lib/debounce";
|
|
import { AnimatedConditional } from "@/components/animated-conditional";
|
|
import OpenAILogo from "@/components/logo/openai-logo";
|
|
import { ModelSelectors } from "./model-selectors";
|
|
|
|
export interface OpenAISettingsFormData {
|
|
apiKey: string;
|
|
llmModel: string;
|
|
embeddingModel: string;
|
|
}
|
|
|
|
export function OpenAISettingsForm({
|
|
isCurrentProvider = false,
|
|
}: {
|
|
isCurrentProvider: boolean;
|
|
}) {
|
|
const [useExistingKey, setUseExistingKey] = useState(true);
|
|
const {
|
|
register,
|
|
watch,
|
|
setValue,
|
|
clearErrors,
|
|
formState: { errors },
|
|
} = useFormContext<OpenAISettingsFormData>();
|
|
|
|
const apiKey = watch("apiKey");
|
|
const debouncedApiKey = useDebouncedValue(apiKey, 500);
|
|
|
|
// Handle switch change
|
|
const handleUseExistingKeyChange = (checked: boolean) => {
|
|
setUseExistingKey(checked);
|
|
if (checked) {
|
|
// Clear the API key field when using existing key
|
|
setValue("apiKey", "");
|
|
}
|
|
};
|
|
|
|
// Clear form errors when useExistingKey changes
|
|
useEffect(() => {
|
|
clearErrors("apiKey");
|
|
}, [useExistingKey, clearErrors]);
|
|
|
|
const shouldFetchModels = isCurrentProvider
|
|
? useExistingKey
|
|
? true
|
|
: !!debouncedApiKey
|
|
: !!debouncedApiKey;
|
|
|
|
const {
|
|
data: modelsData,
|
|
isLoading: isLoadingModels,
|
|
error: modelsError,
|
|
} = useGetOpenAIModelsQuery(
|
|
{
|
|
apiKey: useExistingKey ? "" : debouncedApiKey,
|
|
},
|
|
{
|
|
enabled: shouldFetchModels,
|
|
}
|
|
);
|
|
|
|
const languageModels = modelsData?.language_models || [];
|
|
const embeddingModels = modelsData?.embedding_models || [];
|
|
|
|
const apiKeyError = modelsError
|
|
? "Invalid OpenAI API key. Verify or replace the key."
|
|
: errors.apiKey?.message;
|
|
|
|
return (
|
|
<div className="space-y-4">
|
|
<div className="space-y-2">
|
|
{isCurrentProvider && (
|
|
<LabelWrapper
|
|
label="Use existing OpenAI API key"
|
|
id="use-existing-key"
|
|
description="Reuse the key from your environment config. Turn off to enter a different key."
|
|
flex
|
|
>
|
|
<Switch
|
|
checked={useExistingKey}
|
|
onCheckedChange={handleUseExistingKeyChange}
|
|
/>
|
|
</LabelWrapper>
|
|
)}
|
|
<AnimatedConditional
|
|
isOpen={!useExistingKey}
|
|
duration={0.2}
|
|
vertical
|
|
className={!useExistingKey ? "!mt-4" : "!mt-0"}
|
|
>
|
|
<LabelWrapper
|
|
label="OpenAI API key"
|
|
helperText="The API key for your OpenAI account"
|
|
required
|
|
id="api-key"
|
|
>
|
|
<Input
|
|
{...register("apiKey", {
|
|
required: !useExistingKey ? "API key is required" : false,
|
|
})}
|
|
className={apiKeyError ? "!border-destructive" : ""}
|
|
id="api-key"
|
|
type="password"
|
|
placeholder="sk-..."
|
|
/>
|
|
</LabelWrapper>
|
|
</AnimatedConditional>
|
|
{apiKeyError && (
|
|
<p className="text-sm text-destructive">{apiKeyError}</p>
|
|
)}
|
|
{isLoadingModels && (
|
|
<p className="text-sm text-muted-foreground">Validating API key...</p>
|
|
)}
|
|
</div>
|
|
<ModelSelectors
|
|
languageModels={languageModels}
|
|
embeddingModels={embeddingModels}
|
|
isLoadingModels={isLoadingModels}
|
|
logo={<OpenAILogo className="w-4 h-4" />}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|