diff --git a/lib/tools/demoSearch.ts b/lib/tools/demoSearch.ts index 0ba97b2..5b9c0a7 100644 --- a/lib/tools/demoSearch.ts +++ b/lib/tools/demoSearch.ts @@ -35,7 +35,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.25) { + if ((match.score || 1) > 0.35) { const metadata = match.metadata as Metadata const guildId = metadata.guild_id;