ragflow / rag /nlp /__init__.py
KevinHuSh
add paper & manual parser (#46)
96a1a44
raw
history blame
171 Bytes
from . import search
from rag.utils import ELASTICSEARCH
retrievaler = search.Dealer(ELASTICSEARCH)
from nltk.stem import PorterStemmer
stemmer = PorterStemmer()