Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for kagame_ja #1449

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading