[Bugfix]: Fix issue of context overspilling into other apps (#835)

This commit is contained in:
Deshraj Yadav
2023-10-19 17:46:33 -07:00
committed by GitHub
parent d18e533adf
commit a5c86a2f5c
2 changed files with 3 additions and 2 deletions

View File

@@ -44,8 +44,8 @@ def test_create_chunks(chunker, text_splitter_mock, loader_mock, app_id, data_ty
result = chunker.create_chunks(loader_mock, "test_src", app_id)
expected_ids = [
hashlib.sha256(("Chunk 1" + "URL 1").encode()).hexdigest(),
hashlib.sha256(("Chunk 2" + "URL 1").encode()).hexdigest(),
f"{app_id}--" + hashlib.sha256(("Chunk 1" + "URL 1").encode()).hexdigest(),
f"{app_id}--" + hashlib.sha256(("Chunk 2" + "URL 1").encode()).hexdigest(),
]
assert result["documents"] == ["Chunk 1", "Chunk 2"]