ragflow/rag/nlp/__init__.py

8 lines
171 B
Python
Raw Normal View History

2024-01-18 19:28:37 +08:00
from . import search
from rag.utils import ELASTICSEARCH
2024-01-30 18:28:09 +08:00
retrievaler = search.Dealer(ELASTICSEARCH)
from nltk.stem import PorterStemmer
stemmer = PorterStemmer()