Skip to content

Commit

Permalink
Update meta tags
Browse files Browse the repository at this point in the history
Signed-off-by: Jay Wang <[email protected]>
  • Loading branch information
xiaohk committed Jul 9, 2024
1 parent aee12fd commit 739c380
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ A JavaScript library that brings vector search and RAG to your browser!

## What is MeMemo?

MeMemo is JavaScript library that adapts the state-of-the-art approximate nearest neighbor search technique HNSW to browser environments.
MeMemo is a JavaScript library that adapts the state-of-the-art approximate nearest neighbor search technique HNSW to browser environments.
Developed with modern and native Web technologies, such as IndexedDB and Web Workers, our toolkit leverages client-side hardware capabilities to enable researchers and developers to efficiently search through millions of high-dimensional vectors in browsers.
MeMemo enables exciting new design and research opportunities, such as private and personalized content creation and interactive prototyping, as demonstrated in our example application RAG Playground.✨

Expand Down
52 changes: 44 additions & 8 deletions examples/rag-playground/index.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,53 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RAG Playground | Prototype RAG Applications in Your Browser!</title>

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!-- Primary Meta Tags -->
<title>MeMemo | RAG and Vector Search in Your Browser</title>
<meta
name="title"
content="MeMemo | RAG and Vector Search in Your Browser"
/>
<meta
name="description"
content="MeMemo is a JavaScript library that brings RAG and vector search to browser environments. ✨"
/>

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://poloclub.github.io/mememo" />
<meta
property="og:title"
content="MeMemo | RAG and Vector Search in Your Browser"
/>
<meta
property="og:description"
content="MeMemo is a JavaScript library that brings RAG and vector search to browser environments. ✨"
/>
<meta property="og:image" content="https://i.imgur.com/mtLf2u1.png" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://poloclub.github.io/mememo" />
<meta
property="twitter:title"
content="MeMemo | RAG and Vector Search in Your Browser"
/>
<meta
property="twitter:description"
content="MeMemo is a JavaScript library that brings RAG and vector search to browser environments. ✨"
/>
<meta property="twitter:image" content="https://i.imgur.com/mtLf2u1.png" />

<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
Expand Down

0 comments on commit 739c380

Please sign in to comment.