diff --git a/level_4/api.py b/level_4/api.py index d13fffc2e..43e008f6c 100644 --- a/level_4/api.py +++ b/level_4/api.py @@ -111,7 +111,7 @@ async def document_to_graph_db(payload: Payload): # Execute the query - replace this with the actual execution method async with session_scope(session=AsyncSessionLocal()) as session: # Assuming you have a method in Neo4jGraphDB to execute the query - result = await add_documents_to_graph_db(session, decoded_payload['user_id'], decoded_payload['settings']) + result = await add_documents_to_graph_db(postgres_session =session, user_id = decoded_payload['user_id'], loader_settins =decoded_payload['settings']) return result except Exception as e: diff --git a/level_4/pyproject.toml b/level_4/pyproject.toml index 50adc5edc..64574f0d6 100644 --- a/level_4/pyproject.toml +++ b/level_4/pyproject.toml @@ -1,9 +1,20 @@ [tool.poetry] name = "PromethAI_memory" version = "0.1.0" -description = "PromethAI memory manager" +description = "PromethAI cognitive architecture is a library for enriching LLM context by managing AI cognitive architecture" authors = ["Vasilije Markovic"] readme = "README.md" +license = "Apache-2.0" +homepage = "https://github.com/topoteretes/PromethAI-Memory" +repository = "https://www.prometh.ai" +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "License :: OSI Approved :: Apache Software License", + "Topic :: Software Development :: Libraries", + "Operating System :: MacOS :: MacOS X", + "Operating System :: POSIX :: Linux", + "Operating System :: Microsoft :: Windows",] [tool.poetry.dependencies] python = "^3.10"