DocuBot / config /constants.py
MaheshLEO4's picture
Initial commit for DocChat
b7e0e53
raw
history blame contribute delete
276 Bytes
# Maximum allowed size for a single file (50 MB)
MAX_FILE_SIZE: int = 50 * 1024 * 1024
# Maximum allowed total size for all uploaded files (200 MB)
MAX_TOTAL_SIZE: int = 200 * 1024 * 1024
# Allowed file types for upload
ALLOWED_TYPES: list = [".txt", ".pdf", ".docx", ".md"]