b8681
Breaking Changes📦 llama-cppView on GitHub →
⚠ 1 breaking🐛 1 fixes🔧 1 symbols
Summary
This release fixes an issue where newline characters were incorrectly stripped in multiline input for llama-cli and includes an internal change replacing '&' with 'string_view'.
⚠️ Breaking Changes
- The internal representation of the '&' character has been changed to 'string_view'. This may break internal logic relying on the previous representation if any.
Migration Steps
- If relying on the internal handling of the '&' character, update code to use 'string_view' instead of the old '&' representation.
🐛 Bug Fixes
- Fixed stripping of \n characters in multiline input for llama-cli.