diff --git a/lib/tools/demoSearch.ts b/lib/tools/demoSearch.ts index 651060f..f7dffd5 100644 --- a/lib/tools/demoSearch.ts +++ b/lib/tools/demoSearch.ts @@ -43,7 +43,7 @@ async function formatResults(matches: ScoredPineconeRecord[]) { const results = [] for (let i = 0; i < matches.length; i++) { const match = matches[i] - if ((match.score || 1) > 0.35) { + if ((match.score || 1) > 0.25) { const metadata = match.metadata as Metadata const guildId = metadata.guild_id;