aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhravya <[email protected]>2024-04-15 10:48:14 -0700
committerDhravya <[email protected]>2024-04-15 10:48:14 -0700
commitbb15bde7a89469a07fe7fb1e017d937ff4515380 (patch)
treed544edb90e26d8bd97494fb432b1397fcef8a550
parentget chrome extension button (diff)
downloadsupermemory-bb15bde7a89469a07fe7fb1e017d937ff4515380.tar.xz
supermemory-bb15bde7a89469a07fe7fb1e017d937ff4515380.zip
help on the chrome ext
-rw-r--r--README.md6
-rw-r--r--apps/cf-ai-backend/src/routes/chat.ts2
2 files changed, 6 insertions, 2 deletions
diff --git a/README.md b/README.md
index 29096cb0..f63fa754 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/apps/cf-ai-backend/src/routes/chat.ts b/apps/cf-ai-backend/src/routes/chat.ts
index ee02b0a0..505c8859 100644
--- a/apps/cf-ai-backend/src/routes/chat.ts
+++ b/apps/cf-ai-backend/src/routes/chat.ts
@@ -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);