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:adf5b4c2d31f78adb9679cd663c99590006f4dd4336c3b9269d302741d1c997c
3
- size 797154
 
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:50212cef55880eebaa1f439d593ee268e130fa12a8351da6faa2f8480574c217
3
- size 4027532
 
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:467aea4205dd1c492e629d2563fdf1023cc4b1564964fd39d446f7489edc9df4
3
- size 4027437
 
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