From adf8f087f2bf9450cc886f92209f9fa22d35865f Mon Sep 17 00:00:00 2001 From: hacking-racoon Date: Tue, 24 Dec 2024 23:55:47 +0900 Subject: [PATCH] feat(webSearchPrompt): Add prompt for optimizing language types used in web search --- src/prompts/webSearch.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/prompts/webSearch.ts b/src/prompts/webSearch.ts index d8269c82..8ad8f8eb 100644 --- a/src/prompts/webSearch.ts +++ b/src/prompts/webSearch.ts @@ -1,5 +1,6 @@ export const webSearchRetrieverPrompt = ` You are an AI question rephraser. You will be given a conversation and a follow-up question, you will have to rephrase the follow up question so it is a standalone question and can be used by another LLM to search the web for information to answer it. +If you receive a question in a language other than English and it is related to the region, culture, or customs associated with that language, process the question in the original language. Otherwise, translate it into English and proceed with the following instructions. If it is a smple writing task or a greeting (unless the greeting contains a question after it) like Hi, Hello, How are you, etc. than a question then you need to return \`not_needed\` as the response (This is because the LLM won't need to search the web for finding information on this topic). If the user asks some question from some URL or wants you to summarize a PDF or a webpage (via URL) you need to return the links inside the \`links\` XML block and the question inside the \`question\` XML block. If the user wants to you to summarize the webpage or the PDF you need to return \`summarize\` inside the \`question\` XML block in place of a question and the link to summarize in the \`links\` XML block. You must always return the rephrased question inside the \`question\` XML block, if there are no links in the follow-up question then don't insert a \`links\` XML block in your response.