From 00769bde260029553abe9352c1927e90c742ff0b Mon Sep 17 00:00:00 2001 From: asim-shrestha Date: Wed, 7 Jun 2023 11:10:31 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Increase=20Weaviate=20score=20th?= =?UTF-8?q?reshold=20once=20again?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/api/agent/agent_service/open_ai_agent_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/reworkd_platform/web/api/agent/agent_service/open_ai_agent_service.py b/platform/reworkd_platform/web/api/agent/agent_service/open_ai_agent_service.py index e888704e5d..261c6f179d 100644 --- a/platform/reworkd_platform/web/api/agent/agent_service/open_ai_agent_service.py +++ b/platform/reworkd_platform/web/api/agent/agent_service/open_ai_agent_service.py @@ -119,7 +119,7 @@ async def create_tasks_agent( with self.agent_memory as memory: for task in tasks: similar_tasks = memory.get_similar_tasks( - task, score_threshold=0.97 # TODO: Once we use ReAct, revisit + task, score_threshold=0.98 # TODO: Once we use ReAct, revisit ) # Check if similar tasks are found