Added a few updates to poetry

This commit is contained in:
Vasilije 2023-11-23 10:55:03 +01:00
parent 92828c41d0
commit 4a8db1fe51
2 changed files with 13 additions and 2 deletions

View file

@ -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:

View file

@ -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"