mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2026-06-26 14:20:21 +00:00
f7ca93d12c
* feat: Add basic PWA support and service worker for offline caching * feat: Vite PWA implementation WIP * feat: Improve PWA icons generation * feat: Add PWA workbox to server routes * feat: Include `version.json` in static assets * feat: Add HTTP cache headers for PWA static assets * feat: Update app name for `apple-mobile-web-app-title` * feat: Implement PWA versioning and automatic update detection * chore: Update `.gitignore` files * feat: Splash Screens * feat: Add dark mode favicon support * refactor: Cleanup * fix: Use dark logo for dark splash screens * refactor: Simplify favicons SVG code * fix: Adjust caching and polling for reliable service worker updates * fix: Add missing favicon entry * fix: Align PWA service worker configuration with SvelteKit build structure * fix: Replace hashed bundle paths with versioned static paths * test: Add PWA tests * ci: Add build output for unit tests * refactor: Cleanup * fix: Server build & release versioning * chore: Update package-lock.json * chore: Increase PWA cache size * chore: Update packages * feat: Update favicons * refactor: Post-merge fix * feat: support explicit build version for PWA cache busting * fix: CI * feat: Improve PWA Refresh Alert UI * feat: Add toggleable build version display * refactor: Cleanup * feat: Add version mismatch detection and manual app reload * refactor: replace dynamic imports with static * refactor: Cleanup * feat: Add safe space for `pwa-<size>.png` rendered icons * fix: use relative paths for PWA assets to support base path deployment * feat: add PWA mode detection via URL query parameter * feat: Use ?cache=true for SW-cached PWA assets * refactor: Build process cleanup * refactor: Decouple PWA versioning and remove ?cache=true workaround * chore: Update README logo * feat: Include PWA Assets generation in build script * refactor: `usePwa` hook for core layout * fix: Relativize base vite plugin * fix: remove unnecessary backslash escapes in test regexes * test: update static asset paths for API Key test * refactor: Move SvelteKit PWA Options config to constants * ui: fix update notification never appearing Keep the PWA hook object intact instead of destructuring needRefreshByStorage, which freezes the reactive getter. Also exclude loading.html from PWA precache to prevent 404 errors and broken SW installation.
156 lines
1.7 KiB
Plaintext
156 lines
1.7 KiB
Plaintext
# 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
|
|
/common/build-info.cpp
|
|
|
|
# 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
|
|
|
|
# Python
|
|
|
|
/.venv
|
|
__pycache__/
|
|
*/poetry.lock
|
|
poetry.toml
|
|
poetry.lock
|
|
uv.lock
|
|
|
|
# Nix
|
|
|
|
flake.lock
|
|
/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
|
|
|
|
# Generated by scripts
|
|
/hellaswag_val_full.txt
|
|
/winogrande-debiased-eval.csv
|
|
/wikitext-2-raw/
|
|
|
|
# Test models for lora adapters
|
|
|
|
/lora-tests
|
|
|
|
# Local scripts
|
|
|
|
/run-vim.sh
|
|
/run-chat.sh
|
|
/run-spec.sh
|
|
/.ccache/
|
|
|
|
# IDE
|
|
|
|
/*.code-workspace
|
|
/.windsurf/
|
|
# emscripten
|
|
a.out.*
|
|
|
|
# AGENTS
|
|
|
|
AGENTS.local.md
|
|
.pi/SYSTEM.md
|