mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-12 05:48:58 +08:00
feat: frontend remove gpt4 check (#815)
This commit is contained in:
parent
c13a90ee69
commit
7457550673
@ -34,20 +34,15 @@ export type IConfigModelProps = {
|
||||
completionParams: CompletionParams
|
||||
onCompletionParamsChange: (newParams: CompletionParams) => void
|
||||
disabled: boolean
|
||||
canUseGPT4: boolean
|
||||
onShowUseGPT4Confirm: () => void
|
||||
}
|
||||
|
||||
const ConfigModel: FC<IConfigModelProps> = ({
|
||||
// mode,
|
||||
modelId,
|
||||
provider,
|
||||
setModelId,
|
||||
completionParams,
|
||||
onCompletionParamsChange,
|
||||
disabled,
|
||||
canUseGPT4,
|
||||
onShowUseGPT4Confirm,
|
||||
}) => {
|
||||
const { t } = useTranslation()
|
||||
const { textGenerationModelList } = useProviderContext()
|
||||
@ -122,11 +117,6 @@ const ConfigModel: FC<IConfigModelProps> = ({
|
||||
|
||||
const handleSelectModel = (id: string, nextProvider = ProviderEnum.openai) => {
|
||||
return async () => {
|
||||
if (id === 'gpt-4' && !canUseGPT4) {
|
||||
hideConfig()
|
||||
onShowUseGPT4Confirm()
|
||||
return
|
||||
}
|
||||
const prevParamsRule = getAllParams()[provider]?.[modelId]
|
||||
|
||||
setModelId(id, nextProvider)
|
||||
|
@ -292,10 +292,6 @@ const Configuration: FC = () => {
|
||||
setCompletionParams(newParams)
|
||||
}}
|
||||
disabled={!hasSetAPIKEY}
|
||||
canUseGPT4={hasSetCustomAPIKEY}
|
||||
onShowUseGPT4Confirm={() => {
|
||||
setShowUseGPT4Confirm(true)
|
||||
}}
|
||||
/>
|
||||
<div className='mx-3 w-[1px] h-[14px] bg-gray-200'></div>
|
||||
<Button onClick={() => setShowConfirm(true)} className='shrink-0 mr-2 w-[70px] !h-8 !text-[13px] font-medium'>{t('appDebug.operation.resetConfig')}</Button>
|
||||
|
Loading…
x
Reference in New Issue
Block a user