From cd75151431b3583c8aaa535ff922a366edde41e1 Mon Sep 17 00:00:00 2001 From: Debanjum Date: Fri, 1 Nov 2024 11:58:44 -0700 Subject: [PATCH] Do not allow auto selecting research mode as tool for now. You are required to manually turning it on. This takes longer and should be a high intent activity initiated by user --- src/khoj/utils/helpers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/khoj/utils/helpers.py b/src/khoj/utils/helpers.py index 664bbde9..c98016fa 100644 --- a/src/khoj/utils/helpers.py +++ b/src/khoj/utils/helpers.py @@ -355,7 +355,6 @@ tool_descriptions_for_llm = { ConversationCommand.Webpage: "To use if the user has directly provided the webpage urls or you are certain of the webpage urls to read.", ConversationCommand.Code: "To run Python code in a Pyodide sandbox with no network access. Helpful when need to parse information, run complex calculations, create documents and charts for user. Matplotlib, bs4, pandas, numpy, etc. are available.", ConversationCommand.Summarize: "To retrieve an answer that depends on the entire document or a large text.", - ConversationCommand.Research: "To use when you need to do DEEP research on a topic. This will take longer than usual, but give a more detailed, comprehensive answer.", } function_calling_description_for_llm = {