.gitignore 272 B

123456789101112131415161718192021222324252627282930313233
  1. # Virtual environment
  2. .venv/
  3. # Build artifacts
  4. bin/
  5. build/
  6. *.so
  7. *.o
  8. *.a
  9. # IDE
  10. .idea/
  11. .vscode/
  12. *.swp
  13. *.swo
  14. # OS files
  15. .DS_Store
  16. Thumbs.db
  17. # Test artifacts
  18. *.test
  19. coverage.out
  20. # Large model files
  21. *.mak
  22. *.gguf
  23. *.safetensors
  24. *.bin
  25. tokenizer.json
  26. .cache
  27. .gocache/
  28. .gotmp/