SmartDocAI / configuration /definitions.py
TilanB's picture
Initial commit for Hugging Face Space
50fcf88
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"]