From c03b81d5e5630694fda62db96079aeae057ad200 Mon Sep 17 00:00:00 2001 From: Vaibhav Bhuva Date: Fri, 19 Jul 2024 11:33:28 +0530 Subject: [PATCH] Updated bot installer version --- flow/src/handlers/bot_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/src/handlers/bot_install.py b/flow/src/handlers/bot_install.py index a985c993..bf397349 100644 --- a/flow/src/handlers/bot_install.py +++ b/flow/src/handlers/bot_install.py @@ -13,7 +13,7 @@ async def install_bot( bot_id: str, bot_fsm_code: str, bot_requirements_txt: str, index_urls: List[str] ): - requirements_txt = "openai\ncryptography\njb-manager-bot\n" + bot_requirements_txt + requirements_txt = "openai\ncryptography\njb-manager-bot==0.2.0\n" + bot_requirements_txt bots_parent_directory = Path(__file__).parent.parent.parent bots_root_directory = Path(os.path.join(bots_parent_directory, "bots"))