Skip to content

Commit

Permalink
help on the chrome ext
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhravya committed Apr 15, 2024
1 parent 1fd5741 commit bb15bde
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ Supermemory fixes this.

Just go to [supermemory.dhr.wtf](https://supermemory.dhr.wtf) and sign in with your google account.

To use the chrome extension, please download it from the [releases page](https://github.com/dhravya/supermemory/releases) and load it in chrome.
To use the chrome extension,

1. Get the chrome ext (click on the button)
2. Click on the "Extension Auth" button so the extension knows who you are :)
![chrome](https://i.dhr.wtf/r/Clipboard_Apr_15,_2024_at_10.47 AM.png)

## 👨‍💻 The Stack

Expand Down
2 changes: 1 addition & 1 deletion apps/cf-ai-backend/src/routes/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,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.4).map(({ id }) => id);
const highScoreIds = responses.matches.filter(({ score }) => score > 0.3).map(({ id }) => id);

console.log('highscoreIds', highScoreIds);

Expand Down

0 comments on commit bb15bde

Please sign in to comment.