All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- (Llama.create_completion) Revert change so that
max_tokens
is not truncated tocontext_size
increate_completion
- (server) Fixed changed settings field names from pydantic v2 migration
- (server) Streaming requests can are now interrupted pre-maturely when a concurrent request is made. Can be controlled with the
interrupt_requests
setting. - (server) Moved to fastapi v0.100.0 and pydantic v2
- (docker) Added a new "simple" image that builds llama.cpp from source when started.
- (server) performance improvements by avoiding unnecessary memory allocations during sampling
- (llama.cpp) Update llama.cpp
- Fix performance bug in Llama model by pre-allocating memory tokens and logits.
- Fix bug in Llama model where the model was not free'd after use.
- (llama.cpp) New model API
- Performance issue during eval caused by looped np.concatenate call
- State pickling issue when saving cache to disk
- (llama.cpp) Fix struct misalignment bug
- (llama.cpp) Update llama.cpp
- Fix docs for seed. Set -1 for random.
- (llama.cpp) Add full gpu utilisation in CUDA
- (llama.cpp) Add get_vocab
- (llama.cpp) Add low_vram parameter
- (server) Add logit_bias parameter
- Metal support working
- Cache re-enabled
- Fix broken pip installation
- This release was deleted due to a bug with the packaging system that caused pip installations to fail.
- Truncate max_tokens in create_completion so requested tokens doesn't exceed context size.
- Temporarily disable cache for completion requests
- (llama.cpp) k-quants support
- (server) mirostat sampling parameters to server
- Support both
.so
and.dylib
forlibllama
on MacOS
- (llama.cpp) Metal Silicon support
- (llama.cpp) OpenLlama 3B support
- (misc) Added first version of the changelog
- (server) Use async routes
- (python-api) Use numpy for internal buffers to reduce memory usage and improve performance.
- (python-api) Performance bug in stop sequence check slowing down streaming.