test: fix path based on pr comment
This commit is contained in:
parent
2b083dd0f1
commit
4424bdc764
1 changed files with 3 additions and 10 deletions
|
|
@ -30,17 +30,10 @@ async def process_and_search(num_of_searches):
|
|||
|
||||
|
||||
async def main():
|
||||
data_directory_path = str(
|
||||
pathlib.Path(
|
||||
os.path.join(pathlib.Path(__file__).parent, ".data_storage/test_load")
|
||||
).resolve()
|
||||
)
|
||||
data_directory_path = os.path.join(pathlib.Path(__file__).parent, ".data_storage/test_load")
|
||||
cognee.config.data_root_directory(data_directory_path)
|
||||
cognee_directory_path = str(
|
||||
pathlib.Path(
|
||||
os.path.join(pathlib.Path(__file__).parent, ".cognee_system/test_load")
|
||||
).resolve()
|
||||
)
|
||||
|
||||
cognee_directory_path = os.path.join(pathlib.Path(__file__).parent, ".cognee_system/test_load")
|
||||
cognee.config.system_root_directory(cognee_directory_path)
|
||||
|
||||
num_of_pdfs = 10
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue