mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 23:48:56 +01:00
76562f4250
* Initial version - setup a file-push architecture for generating embeddings with Khoj * Use state.host and state.port for configuring the URL for the indexer * Fix parsing of PDF files * Read markdown files from streamed data and update unit tests * On application startup, load in embeddings from configurations files, rather than regenerating the corpus based on file system * Init: refactor indexer/batch endpoint to support a generic file ingestion format * Add features to better support indexing from files sent by the desktop client * Initial commit with Electron application - Adds electron app * Add import for pymupdf, remove import for pypdf * Allow user to configure khoj host URL * Remove search type configuration from index.html * Use v1 path for current indexer routes
97 lines
3.3 KiB
Python
97 lines
3.3 KiB
Python
# Standard Packages
|
|
import json
|
|
import os
|
|
import base64
|
|
|
|
# Internal Packages
|
|
from khoj.processor.pdf.pdf_to_jsonl import PdfToJsonl
|
|
|
|
from khoj.utils.fs_syncer import get_pdf_files
|
|
from khoj.utils.rawconfig import TextContentConfig
|
|
|
|
|
|
def test_single_page_pdf_to_jsonl():
|
|
"Convert single page PDF file to jsonl."
|
|
# Act
|
|
# Extract Entries from specified Pdf files
|
|
# Read singlepage.pdf into memory as bytes
|
|
with open("tests/data/pdf/singlepage.pdf", "rb") as f:
|
|
pdf_bytes = base64.b64encode(f.read()).decode("utf-8")
|
|
|
|
data = {"tests/data/pdf/singlepage.pdf": pdf_bytes}
|
|
entries, entry_to_file_map = PdfToJsonl.extract_pdf_entries(pdf_files=data)
|
|
|
|
# Process Each Entry from All Pdf Files
|
|
jsonl_string = PdfToJsonl.convert_pdf_maps_to_jsonl(
|
|
PdfToJsonl.convert_pdf_entries_to_maps(entries, entry_to_file_map)
|
|
)
|
|
jsonl_data = [json.loads(json_string) for json_string in jsonl_string.splitlines()]
|
|
|
|
# Assert
|
|
assert len(jsonl_data) == 1
|
|
|
|
|
|
def test_multi_page_pdf_to_jsonl():
|
|
"Convert multiple pages from single PDF file to jsonl."
|
|
# Act
|
|
# Extract Entries from specified Pdf files
|
|
with open("tests/data/pdf/multipage.pdf", "rb") as f:
|
|
pdf_bytes = base64.b64encode(f.read()).decode("utf-8")
|
|
|
|
data = {"tests/data/pdf/multipage.pdf": pdf_bytes}
|
|
entries, entry_to_file_map = PdfToJsonl.extract_pdf_entries(pdf_files=data)
|
|
|
|
# Process Each Entry from All Pdf Files
|
|
jsonl_string = PdfToJsonl.convert_pdf_maps_to_jsonl(
|
|
PdfToJsonl.convert_pdf_entries_to_maps(entries, entry_to_file_map)
|
|
)
|
|
jsonl_data = [json.loads(json_string) for json_string in jsonl_string.splitlines()]
|
|
|
|
# Assert
|
|
assert len(jsonl_data) == 6
|
|
|
|
|
|
def test_get_pdf_files(tmp_path):
|
|
"Ensure Pdf files specified via input-filter, input-files extracted"
|
|
# Arrange
|
|
# Include via input-filter globs
|
|
group1_file1 = create_file(tmp_path, filename="group1-file1.pdf")
|
|
group1_file2 = create_file(tmp_path, filename="group1-file2.pdf")
|
|
group2_file1 = create_file(tmp_path, filename="group2-file1.pdf")
|
|
group2_file2 = create_file(tmp_path, filename="group2-file2.pdf")
|
|
# Include via input-file field
|
|
file1 = create_file(tmp_path, filename="document.pdf")
|
|
# Not included by any filter
|
|
create_file(tmp_path, filename="not-included-document.pdf")
|
|
create_file(tmp_path, filename="not-included-text.txt")
|
|
|
|
expected_files = set(
|
|
[os.path.join(tmp_path, file.name) for file in [group1_file1, group1_file2, group2_file1, group2_file2, file1]]
|
|
)
|
|
|
|
# Setup input-files, input-filters
|
|
input_files = [tmp_path / "document.pdf"]
|
|
input_filter = [tmp_path / "group1*.pdf", tmp_path / "group2*.pdf"]
|
|
|
|
pdf_config = TextContentConfig(
|
|
input_files=input_files,
|
|
input_filter=[str(path) for path in input_filter],
|
|
compressed_jsonl=tmp_path / "test.jsonl",
|
|
embeddings_file=tmp_path / "test_embeddings.jsonl",
|
|
)
|
|
|
|
# Act
|
|
extracted_pdf_files = get_pdf_files(pdf_config)
|
|
|
|
# Assert
|
|
assert len(extracted_pdf_files) == 5
|
|
assert set(extracted_pdf_files.keys()) == expected_files
|
|
|
|
|
|
# Helper Functions
|
|
def create_file(tmp_path, entry=None, filename="document.pdf"):
|
|
pdf_file = tmp_path / filename
|
|
pdf_file.touch()
|
|
if entry:
|
|
pdf_file.write_text(entry)
|
|
return pdf_file
|