<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin. --------- Co-authored-by: Boris Arzentar <borisarzentar@gmail.com> Co-authored-by: Boris <boris@topoteretes.com>
71 lines
2 KiB
Python
Executable file
71 lines
2 KiB
Python
Executable file
import os
|
|
import pathlib
|
|
import cognee
|
|
from cognee.modules.search.operations import get_history
|
|
from cognee.modules.users.methods import get_default_user
|
|
from cognee.shared.logging_utils import get_logger
|
|
from cognee.modules.search.types import SearchType
|
|
|
|
logger = get_logger()
|
|
|
|
|
|
async def main():
|
|
data_directory_path = str(
|
|
pathlib.Path(
|
|
os.path.join(pathlib.Path(__file__).parent, ".data_storage/test_library")
|
|
).resolve()
|
|
)
|
|
cognee.config.data_root_directory(data_directory_path)
|
|
cognee_directory_path = str(
|
|
pathlib.Path(
|
|
os.path.join(pathlib.Path(__file__).parent, ".cognee_system/test_library")
|
|
).resolve()
|
|
)
|
|
cognee.config.system_root_directory(cognee_directory_path)
|
|
|
|
await cognee.prune.prune_data()
|
|
await cognee.prune.prune_system(metadata=True)
|
|
|
|
await cognee.add(["TEST1"], "test1")
|
|
await cognee.add(["TEST2"], "test2")
|
|
|
|
task_1_config = {
|
|
"vector_db_url": "cognee1.test",
|
|
"vector_db_key": "",
|
|
"vector_db_provider": "lancedb",
|
|
}
|
|
task_2_config = {
|
|
"vector_db_url": "cognee2.test",
|
|
"vector_db_key": "",
|
|
"vector_db_provider": "lancedb",
|
|
}
|
|
|
|
task_1_graph_config = {
|
|
"graph_database_provider": "kuzu",
|
|
"graph_file_path": "kuzu1.db",
|
|
}
|
|
task_2_graph_config = {
|
|
"graph_database_provider": "kuzu",
|
|
"graph_file_path": "kuzu2.db",
|
|
}
|
|
|
|
# schedule both cognify calls concurrently
|
|
task1 = asyncio.create_task(
|
|
cognee.cognify(
|
|
["test1"], vector_db_config=task_1_config, graph_db_config=task_1_graph_config
|
|
)
|
|
)
|
|
task2 = asyncio.create_task(
|
|
cognee.cognify(
|
|
["test2"], vector_db_config=task_2_config, graph_db_config=task_2_graph_config
|
|
)
|
|
)
|
|
|
|
# wait until both are done (raises first error if any)
|
|
await asyncio.gather(task1, task2)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import asyncio
|
|
|
|
asyncio.run(main(), debug=True)
|