Skip to content

Commit

Permalink
Update demoSearch.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
berkingurcan committed Jul 3, 2024
1 parent b46c138 commit f63bce9
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 @@ -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;
Expand Down

0 comments on commit f63bce9

Please sign in to comment.