fix db engine config
This commit is contained in:
parent
30c9e5f20f
commit
89c254fb28
1 changed files with 7 additions and 0 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
|
||||||
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
async def main():
|
async def main():
|
||||||
from os import path
|
from os import path
|
||||||
import pathlib
|
import pathlib
|
||||||
|
|
@ -12,6 +17,8 @@ async def main():
|
||||||
# print("System dir: ", cognee_directory_path)
|
# print("System dir: ", cognee_directory_path)
|
||||||
# cognee.config.system_root_directory(cognee_directory_path)
|
# cognee.config.system_root_directory(cognee_directory_path)
|
||||||
|
|
||||||
|
logging.debug("CURRENCT CWD: %s", pathlib.Path(__file__).parent)
|
||||||
|
logging.debug("CURRENCT CWD: %s", os.getcwd())
|
||||||
|
|
||||||
|
|
||||||
dataset_name = "cs_explanations"
|
dataset_name = "cs_explanations"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue