Feat: use file size limit from api (#9711)

This commit is contained in:
KVOJJJin
2024-10-23 17:03:44 +08:00
committed by GitHub
parent e11d5ac708
commit e32116b9a3
8 changed files with 127 additions and 17 deletions

View File

@@ -1,3 +1,7 @@
// fallback for file size limit of dify_config
export const IMG_SIZE_LIMIT = 10 * 1024 * 1024
export const FILE_SIZE_LIMIT = 15 * 1024 * 1024
export const AUDIO_SIZE_LIMIT = 50 * 1024 * 1024
export const VIDEO_SIZE_LIMIT = 100 * 1024 * 1024
export const FILE_URL_REGEX = /^(https?|ftp):\/\//