build: ui build error (#2975)

This commit is contained in:
shaohuzhang1 2025-04-24 16:39:01 +08:00 committed by GitHub
parent e79e7d505d
commit d85801fe58
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class GunicornLocalModelService(BaseService):
'-b', bind,
'-k', 'gthread',
'--threads', '200',
'-w', worker,
'-w', str(worker),
'--max-requests', '10240',
'--max-requests-jitter', '2048',
'--access-logformat', log_format,

View File

@ -115,7 +115,6 @@ import UserForm from '@/components/ai-chat/component/user-form/index.vue'
import Control from '@/components/ai-chat/component/control/index.vue'
import { t } from '@/locales'
import bus from '@/bus'
import { fa } from 'element-plus/es/locale'
const transcribing = ref<boolean>(false)
defineOptions({ name: 'AiChat' })
const route = useRoute()