소스 검색

feat: frontend remove gpt4 check (#815)

Joel 1 년 전
부모
커밋
7457550673
2개의 변경된 파일0개의 추가작업 그리고 14개의 파일을 삭제
  1. 0 10
      web/app/components/app/configuration/config-model/index.tsx
  2. 0 4
      web/app/components/app/configuration/index.tsx

+ 0 - 10
web/app/components/app/configuration/config-model/index.tsx

@@ -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)

+ 0 - 4
web/app/components/app/configuration/index.tsx

@@ -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>