Skip to content

Commit

Permalink
Update demoSearch.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
berkingurcan committed Jun 25, 2024
1 parent fb561a5 commit b2237e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tools/demoSearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b2237e6

Please sign in to comment.