From 9e863c89d275ad14a9cc9b38d92732c3c27a3967 Mon Sep 17 00:00:00 2001 From: andyzhou1982 <51428368+andyzhou1982@users.noreply.github.com> Date: Sat, 8 Mar 2025 04:21:46 +0800 Subject: [PATCH] add JiebaLinkExtractor for chinese doc extracting (#30150) Thank you for contributing to LangChain! - [ ] **PR title**: "community: chinese doc extracting" - [ ] **PR message**: - **Description:** add jieba_link_extractor.py for chinese doc extracting - **Dependencies:** jieba - [ ] **Add tests and docs**: If you're adding a new integration, please include /doc/doc/integrations/providers/jieba.md /doc/doc/integrations/vectorstores/jieba_link_extractor.ipynb /libs/packages.yml --------- Co-authored-by: Chester Curme --- .../community/langchain_community/graph_vectorstores/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/community/langchain_community/graph_vectorstores/__init__.py b/libs/community/langchain_community/graph_vectorstores/__init__.py index ad044624b1b..b01e20a2d68 100644 --- a/libs/community/langchain_community/graph_vectorstores/__init__.py +++ b/libs/community/langchain_community/graph_vectorstores/__init__.py @@ -34,6 +34,7 @@ Example:: - :class:`How to link Documents on hyperlinks in HTML ` - :class:`How to link Documents on common keywords (using KeyBERT) ` - :class:`How to link Documents on common named entities (using GliNER) ` + - `langchain-jieba: link extraction tailored for Chinese language `_ Get started -----------