From edf422c263c9ca2c5ce150ad7deea51f2dfd9521 Mon Sep 17 00:00:00 2001 From: Mohammad Amin Date: Thu, 18 Jan 2024 14:48:43 +0330 Subject: [PATCH] fix: wrong input for ask_question_auto_search! --- worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.py b/worker.py index 328a423..d13fdf7 100644 --- a/worker.py +++ b/worker.py @@ -34,7 +34,7 @@ def query_llm(recieved_data: dict[str, Any]): ask_question_auto_search.delay( question=user_input, community_id=community_id, - bot_given_info=recieved_data, + bot_given_info=recieved_input, )