ragflow/rag/nlp/__init__.py
2024-01-30 18:28:09 +08:00

8 lines
171 B
Python

from . import search
from rag.utils import ELASTICSEARCH
retrievaler = search.Dealer(ELASTICSEARCH)
from nltk.stem import PorterStemmer
stemmer = PorterStemmer()