paper-ai-release-24-07-21/components/Settings.tsx

141 lines
4.6 KiB
TypeScript
Raw Normal View History

2024-01-29 13:35:24 +08:00
"use client";
2024-01-21 23:08:25 +08:00
// Settings.tsx
import { useAppDispatch, useAppSelector } from "@/app/store";
2024-01-29 13:35:24 +08:00
import {
setApiKey,
setUpsreamUrl,
setSystemPrompt,
} from "@/app/store/slices/authSlice";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faArrowLeft } from "@fortawesome/free-solid-svg-icons";
import Link from "next/link";
import { useLocalStorage } from "react-use";
// 在 Settings.tsx 或一个单独的配置文件中
const CONFIG_OPTIONS = [
{
2024-02-11 11:50:04 +08:00
name: "cocopilot-gpt4apiKey在前面手动加上ghu,因为GitHub不允许上传完整的密钥",
apiKey: "_pXVxLPBzcvCjSvG0Mv4K7G9ffw3xsM2ZKolZ",
upstreamUrl: "https://proxy.cocopilot.org",
},
{
name: "deepseek-chat(需要手动修改模型为这个)",
apiKey: "sk-ffe19ebe9fa44d00884330ff1c18cf82",
upstreamUrl: "https://api.deepseek.com",
},
{
name: "caifree(推荐)",
apiKey: "sk-aiHrrRLYUUelHstX69E9484509254dBf92061d6744FfFaD1",
upstreamUrl: "https://one.caifree.com",
},
{
name: "自定义",
apiKey: "",
upstreamUrl: "",
},
];
2024-01-21 23:08:25 +08:00
const Settings = () => {
2024-02-05 23:14:40 +08:00
//redux
2024-01-21 23:08:25 +08:00
const dispatch = useAppDispatch();
2024-01-22 08:53:58 +08:00
const apiKey = useAppSelector((state) => state.auth.apiKey);
const upstreamUrl = useAppSelector((state) => state.auth.upsreamUrl);
2024-01-29 13:35:24 +08:00
const systemPrompt = useAppSelector((state) => state.auth.systemPrompt);
//state
const [userConfigNumber, setUserConfigNumber] = useLocalStorage(
"userConfigNumber",
"2"
);
2024-01-21 23:08:25 +08:00
return (
2024-02-07 16:12:40 +08:00
<div className="max-w-md rounded overflow-hidden shadow-lg bg-blue-gray-100 z-1000 mx-auto ">
<h1 className="font-bold text-3xl">settings</h1>
<br />
<div className="flex justify-end mt-4 mr-4">
<Link href="/" aria-label="Settings">
2024-02-11 14:28:03 +08:00
<FontAwesomeIcon
icon={faArrowLeft}
size="2x"
className="icon-hover"
/>
2024-02-07 16:12:40 +08:00
</Link>
</div>
{/* 配置选择器 */}
<label
className="block text-gray-700 text-sm font-bold mb-2"
htmlFor="config-selector"
>
</label>
<select
id="config-selector"
className="mb-4 block appearance-none w-full bg-white border border-gray-400 hover:border-gray-500 px-4 py-2 pr-8 rounded shadow leading-tight focus:outline-none focus:shadow-outline"
onChange={(event) => {
const selectedConfig = CONFIG_OPTIONS[Number(event.target.value)];
dispatch(setApiKey(selectedConfig.apiKey));
dispatch(setUpsreamUrl(selectedConfig.upstreamUrl));
setUserConfigNumber(event.target.value);
console.log("userConfigNumber", userConfigNumber);
}}
value={userConfigNumber}
>
{CONFIG_OPTIONS.map((option, index) => (
<option key={index} value={index}>
{option.name}
</option>
))}
</select>
2024-02-07 16:12:40 +08:00
{/* api key */}
<div className="mb-4">
<label
className="block text-gray-700 text-sm font-bold mb-2"
htmlFor="api-key"
>
API Key:
</label>
<input
id="api-key"
type="password"
2024-02-07 16:12:40 +08:00
value={apiKey}
onChange={(event) => dispatch(setApiKey(event.target.value))}
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
/>
{/* upstream-url */}
<div className="mb-4">
<label
className="block text-gray-700 text-sm font-bold mb-2"
2024-02-07 16:12:40 +08:00
htmlFor="upstream-url"
>
2024-02-07 16:12:40 +08:00
Upstream URL:
</label>
<input
2024-02-07 16:12:40 +08:00
id="upstream-url"
type="text"
2024-02-07 16:12:40 +08:00
value={upstreamUrl}
onChange={(event) => dispatch(setUpsreamUrl(event.target.value))}
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
/>
</div>
{/* systemPrompt */}
<div className="mb-4">
<label
className="block text-gray-700 text-sm font-bold mb-2"
htmlFor="system-prompt"
>
System Prompt(Paper2AI):
</label>
<textarea
id="system-prompt"
value={systemPrompt}
2024-02-08 23:28:33 +08:00
onChange={(event) => dispatch(setSystemPrompt(event.target.value))}
2024-01-29 13:35:24 +08:00
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
2024-02-07 16:12:40 +08:00
rows={8}
2024-01-29 13:35:24 +08:00
/>
</div>
2024-01-22 08:53:58 +08:00
</div>
2024-02-07 16:12:40 +08:00
</div>
2024-01-21 23:08:25 +08:00
);
};
export default Settings;