-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 2.26 KB
/
Copy pathindex.html
File metadata and controls
48 lines (45 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#14161c" />
<title>RagViewer — in-browser RAG over your PDFs</title>
<meta
name="description"
content="RagViewer turns PDFs into a queryable knowledge base in your browser: convert to DocLang, chunk, embed, explore the embedding cloud, and chat with your documents. Local-first RAG with optional Ollama, OpenAI and Qdrant. No upload required."
/>
<meta
name="keywords"
content="RAG, retrieval augmented generation, PDF, DocLang, document chunking, embeddings, vector database, EntityDB, Qdrant, Ollama, OpenAI, Transformers.js, in-browser, client-side, PWA"
/>
<meta name="author" content="djdevpro" />
<link rel="canonical" href="https://djdevpro.github.io/RagViewer/" />
<meta name="robots" content="index,follow" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="RagViewer" />
<meta property="og:title" content="RagViewer — in-browser RAG over your PDFs" />
<meta
property="og:description"
content="Convert PDFs to DocLang, chunk, embed, explore and chat with your documents — entirely in your browser. Local-first RAG with optional Ollama, OpenAI and Qdrant."
/>
<meta property="og:url" content="https://djdevpro.github.io/RagViewer/" />
<meta property="og:image" content="https://djdevpro.github.io/RagViewer/pwa-512.png" />
<meta property="og:image:alt" content="RagViewer logo" />
<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="RagViewer — in-browser RAG over your PDFs" />
<meta
name="twitter:description"
content="Convert PDFs to DocLang, chunk, embed, explore and chat with your documents — 100% in your browser."
/>
<meta name="twitter:image" content="https://djdevpro.github.io/RagViewer/pwa-512.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>