mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 08:33:20 +00:00
Compare commits
2 Commits
auto-chunk
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b076f14973 | ||
|
|
31baf181a3 |
@@ -64,12 +64,12 @@ python-pptx==1.0.2
|
||||
redis==5.2.1
|
||||
referencing>=0.28.0,<0.31.0
|
||||
regex==2024.11.6
|
||||
requests==2.32.3
|
||||
requests==2.32.4
|
||||
retry==0.9.2
|
||||
sentence-transformers==3.3.1
|
||||
tiktoken==0.8.0
|
||||
tokenizers==0.21.0
|
||||
torch==2.7.0
|
||||
torch==2.7.1
|
||||
tqdm==4.67.1
|
||||
transformers==4.51.3
|
||||
typing-extensions==4.12.2
|
||||
|
||||
@@ -44,8 +44,8 @@ class ClassicRAG(BaseRetriever):
|
||||
user_api_key=self.user_api_key,
|
||||
decoded_token=decoded_token,
|
||||
)
|
||||
self.question = self._rephrase_query()
|
||||
self.vectorstore = source["active_docs"] if "active_docs" in source else None
|
||||
self.question = self._rephrase_query()
|
||||
self.decoded_token = decoded_token
|
||||
|
||||
def _rephrase_query(self):
|
||||
@@ -53,6 +53,8 @@ class ClassicRAG(BaseRetriever):
|
||||
not self.original_question
|
||||
or not self.chat_history
|
||||
or self.chat_history == []
|
||||
or self.chunks == 0
|
||||
or self.vectorstore is None
|
||||
):
|
||||
return self.original_question
|
||||
|
||||
@@ -77,7 +79,7 @@ class ClassicRAG(BaseRetriever):
|
||||
return self.original_question
|
||||
|
||||
def _get_data(self):
|
||||
if self.chunks == 0:
|
||||
if self.chunks == 0 or self.vectorstore is None:
|
||||
docs = []
|
||||
else:
|
||||
docsearch = VectorCreator.create_vectorstore(
|
||||
|
||||
Reference in New Issue
Block a user