| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- # Extensions
- *.a
- *.bat
- *.bin
- *.d
- *.dll
- *.dot
- *.etag
- *.exe
- *.gcda
- *.gcno
- *.gcov
- *.gguf
- *.gguf.json
- *.lastModified
- *.log
- *.metallib
- *.o
- *.so
- *.swp
- *.tmp
- *.DS_Store
- # IDE / OS
- /.cache/
- /.ccls-cache/
- /.direnv/
- /.envrc
- /.idea/
- /.swiftpm
- /.vs/
- /.vscode/
- /nppBackup
- # Coverage
- /gcovr-report/
- /lcov-report/
- # Build Artifacts
- /tags
- /.build/
- /build*
- /release
- /debug
- /libllama.so
- /llama-*
- /vulkan-shaders-gen
- /rpc-server
- /out/
- /tmp/
- /autogen-*.md
- # Deprecated
- /main
- /server
- # CI
- !/.github/workflows/*.yml
- # Models
- /models/*
- /models-mnt
- !/models/.editorconfig
- !/models/ggml-vocab-*.gguf*
- !/models/templates
- # Zig
- /zig-out/
- /zig-cache/
- # Examples
- /examples/jeopardy/results.txt
- /tools/server/*.css.hpp
- /tools/server/*.html.hpp
- /tools/server/*.js.hpp
- /tools/server/*.mjs.hpp
- /tools/server/*.gz.hpp
- !/build_64.sh
- !/examples/*.bat
- !/examples/*/*.kts
- !/examples/*/*/*.kts
- !/examples/sycl/*.bat
- !/examples/sycl/*.sh
- # Server Web UI temporary files
- /tools/server/webui/node_modules
- /tools/server/webui/dist
- # Python
- /.venv
- __pycache__/
- */poetry.lock
- poetry.toml
- # Nix
- /result
- # Test binaries
- /tests/test-backend-ops
- /tests/test-double-float
- /tests/test-grad0
- /tests/test-grammar-parser
- /tests/test-llama-grammar
- /tests/test-opt
- /tests/test-quantize-fns
- /tests/test-quantize-perf
- /tests/test-rope
- /tests/test-sampling
- /tests/test-tokenizer-0
- /tests/test-tokenizer-1-bpe
- /tests/test-tokenizer-1-spm
- # Scripts
- !/scripts/install-oneapi.bat
- # Test models for lora adapters
- /lora-tests
- # Local scripts
- /run-vim.sh
- /run-chat.sh
- /.ccache/
- # IDE
- /*.code-workspace
- /.windsurf/
|