From b2b4d5184a9e64144c42f897183abfa105e86633 Mon Sep 17 00:00:00 2001 From: Vasilije <8619304+Vasilije1990@users.noreply.github.com> Date: Sun, 19 Nov 2023 12:57:03 +0100 Subject: [PATCH] Added a few updates to poetry and tested packages --- level_4/main.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/level_4/main.py b/level_4/main.py index 53c35ed21..bc22c6e44 100644 --- a/level_4/main.py +++ b/level_4/main.py @@ -473,11 +473,10 @@ async def main(): "path": [".data"], "strategy": "SUMMARY", } - # await load_documents_to_vectorstore(session, user_id, loader_settings=loader_settings) - # await user_query_to_graph_db(session, user_id, "I walked in the forest yesterday and added to my list I need to buy some milk in the store and get a summary from a classical book i read yesterday") + await load_documents_to_vectorstore(session, user_id, loader_settings=loader_settings) + await user_query_to_graph_db(session, user_id, "I walked in the forest yesterday and added to my list I need to buy some milk in the store and get a summary from a classical book i read yesterday") await add_documents_to_graph_db(session, user_id, loader_settings=loader_settings) - - # ee = await user_context_enrichment(session, user_id, query="Tell me about the book I read yesterday") + await user_context_enrichment(session, user_id, query="Tell me about the book I read yesterday") if __name__ == "__main__":