.gitignore 297 B

123456789101112131415161718192021
  1. # Exclude everything first
  2. *
  3. # Then include only what we want
  4. !main.py
  5. !README.md
  6. !models/
  7. !models/llama-2-7b-chat.gguf.dummy
  8. # Exclude the actual model file
  9. models/llama-2-7b-chat.gguf
  10. # Exclude unwanted directories and files
  11. .gradio/
  12. __pycache__/
  13. config/
  14. logs/
  15. *.pyc
  16. *.pem
  17. .DS_Store
  18. Thumbs.db