Spaces:
Running
Running
Germano Cavalcante
commited on
Commit
•
74e0256
1
Parent(s):
91942cf
RAG: Update cache
Browse files
routers/rag/embeddings_dev_docs.pkl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 15328541
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:49bf20e0563ec0180b312fc86fed7898da8c200c7912b4798f77a20239bc8376
|
3 |
size 15328541
|
routers/rag/embeddings_issues.pkl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:56acee36b5681cebd9cbd9965e1340902e2720b26db11039894f67fbc77f9f48
|
3 |
+
size 736153679
|
routers/rag/embeddings_manual.pkl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 22522382
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ef6088113bf2b5e545e83ef03a3a399fe9eef41368754010e27100fa2d650c12
|
3 |
size 22522382
|
routers/tool_wiki_search.py
CHANGED
@@ -49,10 +49,10 @@ class _Data(dict):
|
|
49 |
self[grp.name] = {}
|
50 |
|
51 |
# Create a list to store the text files
|
52 |
-
if grp is Group.
|
53 |
texts = self.docs_get_texts_to_embed()
|
54 |
-
elif grp is Group.wiki:
|
55 |
-
texts = self.wiki_get_texts_to_embed()
|
56 |
else:
|
57 |
texts = self.manual_get_texts_to_embed()
|
58 |
|
|
|
49 |
self[grp.name] = {}
|
50 |
|
51 |
# Create a list to store the text files
|
52 |
+
if grp is Group.dev_docs:
|
53 |
texts = self.docs_get_texts_to_embed()
|
54 |
+
# elif grp is Group.wiki:
|
55 |
+
# texts = self.wiki_get_texts_to_embed()
|
56 |
else:
|
57 |
texts = self.manual_get_texts_to_embed()
|
58 |
|