# ============================================================
# MeetBrief - Phase 1 Requirements
# ============================================================
# Install all dependencies with this command:
#   pip install -r requirements.txt
#
# What each package does:
# --------------------------------------------------------
# transformers     → Loads the LFM2.5-230M model from HuggingFace
# torch            → Powers the AI model calculations (CPU mode)
# onnxruntime      → Faster alternative to run model (optional)
# huggingface_hub  → Downloads model files automatically
# colorama         → Makes terminal output colorful and readable
# python-docx      → Lets users export notes as Word documents
# fpdf2            → Lets users export notes as PDF files
# ============================================================

transformers>=4.40.0
torch>=2.0.0
huggingface_hub>=0.23.0
colorama>=0.4.6
python-docx>=1.1.0
fpdf2>=2.7.0

# Optional: For faster ONNX inference (recommended for production)
# onnxruntime>=1.18.0