tabby/CHANGELOG.md

65 lines
2.3 KiB
Markdown
Raw Normal View History

2023-10-14 00:44:19 +00:00
# v0.4.0 [Unreleased]
## Features
* Supports golang: https://github.com/TabbyML/tabby/issues/553
2023-10-14 00:44:19 +00:00
## Fixes and Improvements
2023-10-21 19:33:05 +00:00
# v0.3.1
## Fixes and improvements
2023-10-21 19:35:12 +00:00
* Fix GPU OOM issue caused the parallelism: https://github.com/TabbyML/tabby/issues/541, https://github.com/TabbyML/tabby/issues/587
2023-10-21 19:33:05 +00:00
* Fix git safe directory check in docker: https://github.com/TabbyML/tabby/issues/569
2023-10-14 00:44:19 +00:00
# v0.3.0
2023-10-03 20:32:13 +00:00
2023-10-03 20:44:17 +00:00
## Features
2023-10-14 00:29:14 +00:00
### Retrieval-Augmented Code Completion Enabled by Default
The currently supported languages are:
* Rust
* Python
* JavaScript / JSX
* TypeScript / TSX
A blog series detailing the technical aspects of Retrieval-Augmented Code Completion will be published soon. Stay tuned!
## Fixes and Improvements
* Fix [Issue #511](https://github.com/TabbyML/tabby/issues/511) by marking ggml models as optional.
* Improve stop words handling by combining RegexSet into Regex for efficiency.
2023-10-03 20:32:13 +00:00
2023-10-13 20:19:50 +00:00
# v0.2.2 (10/09/2023)
## Fixes and improvements
2023-10-14 00:29:14 +00:00
2023-10-13 20:19:50 +00:00
* Fix a critical issue that might cause request dead locking in ctranslate2 backend (when loading is heavy)
2023-10-04 00:13:35 +00:00
# v0.2.1 (10/03/2023)
2023-10-03 20:44:17 +00:00
## Features
2023-10-03 20:32:13 +00:00
### Chat Model & Web Interface
We have introduced a new argument, `--chat-model`, which allows you to specify the model for the chat playground located at http://localhost:8080/playground
To utilize this feature, use the following command in the terminal:
```bash
tabby serve --device metal --model TabbyML/StarCoder-1B --chat-model TabbyML/Mistral-7B
```
### ModelScope Model Registry
Mainland Chinese users have been facing challenges accessing Hugging Face due to various reasons. The Tabby team is actively working to address this issue by mirroring models to a hosting provider in mainland China called modelscope.cn.
```bash
# Download from the Modelscope registry
TABBY_REGISTRY=modelscope tabby download --model TabbyML/WizardCoder-1B
```
2023-10-03 20:44:17 +00:00
## Fixes and improvements
2023-10-03 20:32:13 +00:00
* Implemented more accurate UTF-8 incremental decoding in the [GitHub pull request](https://github.com/TabbyML/tabby/pull/491).
* Fixed the stop words implementation by utilizing RegexSet to isolate the stop word group.
* Improved model downloading logic; now Tabby will attempt to fetch the latest model version if there's a remote change, and the local cache key becomes stale.
2023-10-04 00:37:11 +00:00
* set default num_replicas_per_device for ctranslate2 backend to increase parallelism.