b8558
Breaking Changes📦 llama-cppView on GitHub →
⚠ 1 breaking✨ 1 features🐛 1 fixes🔧 2 symbols
Summary
This release introduces the LLAMA_BUILD_WEBUI flag to control the embedded web UI build, renaming the previous LLAMA_SERVER_NO_WEBUI flag and fixing related build logic.
⚠️ Breaking Changes
- The build flag for disabling the embedded web UI has been renamed from LLAMA_SERVER_NO_WEBUI to LLAMA_BUILD_WEBUI. If you were using the old flag, update your build configuration to use LLAMA_BUILD_WEBUI.
Migration Steps
- Rename usage of the build flag LLAMA_SERVER_NO_WEBUI to LLAMA_BUILD_WEBUI in build configurations.
- If using Nix packaging, update the 'useWebUi' setting in package.nix.
✨ New Features
- Introduced LLAMA_BUILD_WEBUI build flag to allow disabling the embedded web UI.
🐛 Bug Fixes
- Corrected the logic where LLAMA_BUILD_WEBUI was incorrectly dependent on LLAMA_STANDALONE.