From 584221a106216dfcc25de14c16720224cad237e1 Mon Sep 17 00:00:00 2001 From: Nicolas Date: Thu, 13 Feb 2025 13:11:35 -0300 Subject: [PATCH] (feat/extract) Multi-entity prompt improvements (#1181) * Update build-prompts.ts * Update build-prompts.ts * Update build-prompts.ts * Update build-prompts.ts --- apps/api/src/lib/extract/build-prompts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/lib/extract/build-prompts.ts b/apps/api/src/lib/extract/build-prompts.ts index 24710660..f14a6db4 100644 --- a/apps/api/src/lib/extract/build-prompts.ts +++ b/apps/api/src/lib/extract/build-prompts.ts @@ -21,7 +21,7 @@ export function buildPreRerankPrompt( url: string, ): string { const schemaString = JSON.stringify(schema, null, 2); - return `Create a concise search query that combines the key data points from both the schema and prompt. Focus on the core information needed while keeping it general enough to find relevant matches. + return `Create a concise search query that combines the key data points from both the schema and prompt. Focus on the core information needed while keeping it general enough to find relevant matches. If the user wants all the items, the search query should contain "all". Schema: ${schemaString} Prompt: ${prompt}