2024-12-17 16:58:35 -03:00
export function buildRefrasedPrompt ( prompt : string , url : string ) : string {
return ` You are a search query optimizer. Your task is to rephrase the following prompt into an effective search query that will find relevant results about this topic on ${ url } .
Original prompt: " ${ prompt } "
Provide a rephrased search query that:
2024-12-17 17:34:55 -03:00
1. Maintains the core intent of the original prompt with ONLY the keywords
2024-12-17 16:58:35 -03:00
2. Uses relevant keywords
3. Is optimized for search engine results
4. Is concise and focused
5. Short is better than long
2024-12-17 17:34:55 -03:00
6. It is a search engine, not a chatbot
7. Concise
2024-12-17 16:58:35 -03:00
Return only the rephrased search query, without any explanation or additional text. ` ;
}