Spaces:
Runtime error
Runtime error
File size: 707 Bytes
e9cd410 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | # AI Notes Summarizer Environment Configuration
# Application Settings
APP_NAME=AI Notes Summarizer
APP_VERSION=1.0.0
DEBUG=false
# Streamlit Configuration
STREAMLIT_SERVER_PORT=8501
STREAMLIT_SERVER_ADDRESS=0.0.0.0
STREAMLIT_SERVER_HEADLESS=true
STREAMLIT_BROWSER_GATHER_USAGE_STATS=false
# AI Model Configuration
DEFAULT_MODEL=facebook/bart-large-cnn
MODEL_CACHE_DIR=/app/.cache/huggingface
TRANSFORMERS_CACHE=/app/.cache/huggingface
# Processing Limits
MAX_FILE_SIZE_MB=10
MAX_TEXT_LENGTH=50000
CHUNK_SIZE=1024
# Security
ALLOWED_EXTENSIONS=pdf
MAX_UPLOAD_SIZE=10485760
# Logging
LOG_LEVEL=INFO
LOG_FILE=/app/logs/app.log
# Performance
TORCH_HOME=/app/.cache/torch
HF_HOME=/app/.cache/huggingface
|