Skip to content

Commit

Permalink
Add support for kagame_ja
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkkul committed Dec 3, 2024
1 parent e484eb9 commit fd9dbdd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 10 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
Changelog
=========

Version 4.9.6
--------------

This release is the last release that supports weaviate v1.23 and v1.24

This patch version includes:
- Add support for the new ``Kagame_JA`` tokenizer


Version 4.9.5
--------------
This patch version includes:
- Add support for the new ``text2vec-weaviate`` module
- Wrap ``tenant.get`` ``AioRpcError`` in a specifc exception
- Wrap ``tenant.get`` ``AioRpcError`` in a specific exception

Version 4.9.4
--------------
Expand Down
3 changes: 3 additions & 0 deletions weaviate/collections/classes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ class Tokenization(str, Enum):
Tokenize using GSE (for Chinese and Japanese).
`TRIGRAM`
Tokenize into trigrams.
`KAGOME_JA`
Tokenize using the 'Kagome' tokenizer (for Japanese).
`KAGOME_KR`
Tokenize using the 'Kagome' tokenizer and a Korean MeCab dictionary (for Korean).
"""
Expand All @@ -147,6 +149,7 @@ class Tokenization(str, Enum):
FIELD = "field"
GSE = "gse"
TRIGRAM = "trigram"
KAGOME_JA = "kagome_ja"
KAGOME_KR = "kagome_kr"


Expand Down

0 comments on commit fd9dbdd

Please sign in to comment.