Maia Pelletier commited on
Commit ·
c4cef6d
1
Parent(s): 9a1fe75
add new resources and rename PDF references
Browse files
data/vector_store/documents.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:e13dde0719f5b0f740409744bc320441490212527dd68b35631221e10413beda
|
| 3 |
+
size 838703
|
data/vector_store/embeddings.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:64780173ec6e870d87790c8bb1dbcb9070b0517a3136533901e91b01a1d15f16
|
| 3 |
+
size 4217996
|
data/vector_store/index.faiss
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:321157d2942bd7d0e3c6fcd0d2db52126e675d88612a3af4e082f97cf4be3ecd
|
| 3 |
+
size 4217901
|
ingest_documents.py
CHANGED
|
@@ -11,8 +11,9 @@ from ingestion import DocumentIngestion
|
|
| 11 |
PDF_FOLDER = "data/pdfs" # Folder containing PDF files
|
| 12 |
URLS = [
|
| 13 |
# Add your URLs here, one per line
|
| 14 |
-
"https://inspection.canada.ca/en/food-labels/organic-products/operating-manual"
|
| 15 |
-
|
|
|
|
| 16 |
]
|
| 17 |
|
| 18 |
|
|
|
|
| 11 |
PDF_FOLDER = "data/pdfs" # Folder containing PDF files
|
| 12 |
URLS = [
|
| 13 |
# Add your URLs here, one per line
|
| 14 |
+
"https://inspection.canada.ca/en/food-labels/organic-products/operating-manual",
|
| 15 |
+
"https://inspection.canada.ca/en/food-labels/organic-products/import-requirements",
|
| 16 |
+
"https://inspection.canada.ca/en/food-labels/labelling/industry/organic-claims"
|
| 17 |
]
|
| 18 |
|
| 19 |
|