From a02b25d833687d2d39535edd2ca026ccb40bd500 Mon Sep 17 00:00:00 2001 From: JoinTyang <41655440+JoinTyang@users.noreply.github.com> Date: Wed, 7 May 2025 14:56:19 +0800 Subject: [PATCH] seasearch add lang support (#515) * seasearch add lang support * Update use_seasearch.md --------- Co-authored-by: Daniel Pan --- manual/setup/use_seasearch.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/manual/setup/use_seasearch.md b/manual/setup/use_seasearch.md index d6bd9c5c..b01c489e 100644 --- a/manual/setup/use_seasearch.md +++ b/manual/setup/use_seasearch.md @@ -111,3 +111,15 @@ After startup the SeaSearch service, you can check the following logs for Whethe !!! tip "After first time start SeaSearch Server" You can remove the initial admin account informations in `.env` (e.g., `INIT_SS_ADMIN_USER`, `INIT_SS_ADMIN_PASSWORD`), which are only used in the SeaSearch initialization progress (i.e., the **first time** to start services). But make sure **you have recorded it somewhere else in case you forget the password**. +## Other configurations + +### Set tokenization language + +By default, SeaSearch use word based tokenizer designed for English/German/French language. You can add following configuration to use tokenizer designed for Chinese language. + +``` +[SEASEARCH] +enabled = true +... +lang = chinese +```