diff --git a/.gitignore b/.gitignore index b044056..877788c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,10 +5,43 @@ Lean/doc/ # Separate repository - AI-Powered Curriculum Generator Python/AI-Powered_Curriculum_Generator/ +# AI/ML model files and caches (Docling, DistilIA, etc.) +*.bin +*.safetensors +*.onnx +*.pt +*.pth +*.h5 +*.pb +*.tflite +*.mlmodel +models/ +model_cache/ +.cache/ +__pycache__/ +*.pyc +.huggingface/ + +# Lean build artifacts and caches +.lake/ +build/ +.lean/ +lake-packages/ +*.olean + # Temporary files *.tmp *.log +*.swp +*.swo +*~ # OS-specific files .DS_Store -Thumbs.db \ No newline at end of file +Thumbs.db +*.bak + +# IDE specific files (additional) +.idea/ +*.iml +.vscode/*.log \ No newline at end of file