Added a few updates to poetry and tested packages
This commit is contained in:
parent
788a0d77df
commit
92828c41d0
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ async def user_query_to_graph(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 user_query_to_graph_db(decoded_payload['user_id'], decoded_payload['query'], session)
|
||||
result = await user_query_to_graph_db(session= session, user_id= decoded_payload['user_id'],query_input =decoded_payload['query'])
|
||||
|
||||
return result
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue