Spaces:
Sleeping
Sleeping
File size: 8,682 Bytes
01d5a5d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | import { updateModelConfig } from '../../service/modelConfig';
import { useModelConfigStore } from '../../store/useModelConfigStore';
import { Input, Modal, Radio } from 'antd';
import Image from 'next/image';
import { useCallback, useEffect, useState } from 'react';
import { QuestionCircleOutlined } from '@ant-design/icons';
interface IProps {
open: boolean;
onClose: () => void;
}
const options = [
{
label: 'None',
value: ''
},
{
label: 'OpenAI',
value: 'openai'
},
{
label: 'Custom',
value: 'litellm'
}
];
const ModelConfigModal = (props: IProps) => {
const { open, onClose } = props;
const modelConfig = useModelConfigStore((store) => store.modelConfig);
const baseModelConfig = useModelConfigStore((store) => store.baseModelConfig);
const updateBaseModelConfig = useModelConfigStore((store) => store.updateBaseModelConfig);
const fetchModelConfig = useModelConfigStore((store) => store.fetchModelConfig);
const localProviderType = useModelConfigStore((store) => store.modelConfig.provider_type);
const [modelType, setModelType] = useState<string>('');
useEffect(() => {
if (open) {
fetchModelConfig();
}
}, [open]);
useEffect(() => {
setModelType(localProviderType);
}, [localProviderType]);
const renderEmpty = () => {
return (
<div className="flex flex-col items-center">
<Image
alt="SecondMe Logo"
className="object-contain"
height={40}
src="/images/single_logo.png"
width={120}
/>
<div className="text-gray-500 text-[18px] leading-[32px]">
Please Choose OpenAI or Custom
</div>
</div>
);
};
const renderOpenai = useCallback(() => {
return (
<div className="flex flex-col w-full gap-4">
<div className="p-4 border rounded-lg hover:shadow-md transition-shadow">
<label className="block text-sm font-medium text-gray-700 mb-1">API Key</label>
<Input.Password
onChange={(e) => {
updateBaseModelConfig({ ...baseModelConfig, key: e.target.value });
}}
placeholder="Enter your OpenAI API key"
value={baseModelConfig.key}
/>
<div className="mt-2 text-sm text-gray-500">
You can get your API key from{' '}
<a
className="text-blue-500 hover:underline"
href="https://platform.openai.com/settings/organization/api-keys"
rel="noopener noreferrer"
target="_blank"
>
OpenAI API Keys page
</a>
.
</div>
</div>
</div>
);
}, [baseModelConfig]);
const renderCustom = useCallback(() => {
return (
<div className="flex flex-col w-full gap-6 p-4">
<div className="p-4 border rounded-lg hover:shadow-md transition-shadow">
<label className="block text-sm font-medium text-gray-700 mb-1">Chat</label>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div className="flex flex-col">
<div className="text-sm font-medium text-gray-700 mb-1">Model Name</div>
<Input
autoCapitalize="off"
autoComplete="off"
autoCorrect="off"
className="w-full"
data-form-type="other"
onChange={(e) => {
updateBaseModelConfig({ ...baseModelConfig, chat_model_name: e.target.value });
}}
spellCheck="false"
value={baseModelConfig.chat_model_name}
/>
</div>
<div className="flex flex-col">
<div className="text-sm font-medium text-gray-700 mb-1">API Key</div>
<Input.Password
autoCapitalize="off"
autoComplete="new-password"
autoCorrect="off"
className="w-full"
data-form-type="other"
onChange={(e) => {
updateBaseModelConfig({ ...baseModelConfig, chat_api_key: e.target.value });
}}
spellCheck="false"
value={baseModelConfig.chat_api_key}
/>
</div>
</div>
<div className="mt-4">
<label className="block text-sm font-medium text-gray-700 mb-1">API Endpoint</label>
<Input
autoComplete="off"
className="w-full"
onChange={(e) => {
updateBaseModelConfig({ ...baseModelConfig, chat_endpoint: e.target.value });
}}
value={baseModelConfig.chat_endpoint}
/>
</div>
</div>
<div className="p-4 border rounded-lg hover:shadow-md transition-shadow">
<label className="block text-sm font-medium text-gray-700 mb-1">Embedding</label>
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
<div>
<label className="block text-sm font-medium text-gray-700 mb-1">Model Name</label>
<Input
className="w-full"
onChange={(e) => {
updateBaseModelConfig({
...baseModelConfig,
embedding_model_name: e.target.value
});
}}
value={baseModelConfig.embedding_model_name}
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 mb-1">API Key</label>
<Input.Password
className="w-full"
onChange={(e) => {
updateBaseModelConfig({ ...baseModelConfig, embedding_api_key: e.target.value });
}}
value={baseModelConfig.embedding_api_key}
/>
</div>
</div>
<div className="mt-4">
<label className="block text-sm font-medium text-gray-700 mb-1">API Endpoint</label>
<Input
className="w-full"
onChange={(e) => {
updateBaseModelConfig({ ...baseModelConfig, embedding_endpoint: e.target.value });
}}
value={baseModelConfig.embedding_endpoint}
/>
</div>
</div>
</div>
);
}, [baseModelConfig, updateBaseModelConfig]);
const handleUpdate = () => {
updateModelConfig(modelConfig)
.then((res) => {
if (res.data.code == 0) {
onClose();
} else {
throw new Error(res.data.message);
}
})
.catch((error) => {
console.error(error.message || 'Failed to update model config');
});
};
const renderMainContent = useCallback(() => {
if (!modelType) {
return renderEmpty();
}
if (modelType === 'openai') {
return renderOpenai();
}
return renderCustom();
}, [modelType, renderOpenai, renderCustom]);
return (
<Modal
centered
destroyOnClose
okButtonProps={{ disabled: !modelType }}
onCancel={onClose}
onOk={handleUpdate}
open={open}
title={
<div className="flex items-center gap-2">
<div className="text-xl font-semibold leading-6 text-gray-900">
Support Model Configuration
</div>
<a
className="text-gray-500 hover:text-gray-700"
href="https://secondme.gitbook.io/secondme/guides/create-second-me/support-model-config"
rel="noreferrer"
target="_blank"
>
<QuestionCircleOutlined />
</a>
</div>
}
>
<div className="flex flex-col items-center">
<div className="flex flex-col items-center gap-2">
<p className="mb-1 text-sm text-gray-500">
Configure models used for training data synthesis for Second Me, and as external
reference models that Second Me can consult during usage.
</p>
<Radio.Group
buttonStyle="solid"
onChange={(e) => {
setModelType(e.target.value);
updateBaseModelConfig({ ...baseModelConfig, provider_type: e.target.value });
}}
optionType="button"
options={options}
value={modelType ? modelType : ''}
/>
</div>
<div className="w-full border-t border-gray-200 mt-1 mb-2" />
{renderMainContent()}
<div className="w-full border-t border-gray-200 mt-4" />
</div>
</Modal>
);
};
export default ModelConfigModal;
|