increase number

This commit is contained in:
Dhravya 2024-04-11 20:32:14 -07:00
parent 205326fdb1
commit ca62d9542a
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ export async function POST(request: Request, _: CloudflareVectorizeStore, embedd
// return new Response(JSON.stringify({ message: "No Results Found" }), { status: 404 });
// }
const highScoreIds = responses.matches.filter(({ score }) => score > 0.3).map(({ id }) => id);
const highScoreIds = responses.matches.filter(({ score }) => score > 0.4).map(({ id }) => id);
console.log('highscoreIds', highScoreIds);

View file

@ -9,5 +9,5 @@ export const getEnv = () => {
// })
// return null
return "development";
return "production";
};