forked from pluveto/daan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 2.76 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 2.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#fff" />
<link rel="icon" type="image/x-icon" href="/logo.png" />
<title>DAAN - Lightweight LLM Client for OpenAI & Compatible APIs</title>
<meta
name="description"
content="DAAN is a concise and lightweight client for interacting with large language models like OpenAI's GPT series. Features include a minimalist interface, custom API support, secure local storage, chat summary, and personalized settings."
/>
<meta
name="keywords"
content="DAAN, LLM client, language model, AI client, OpenAI, GPT, lightweight, custom API, chat summary, AI assistant, chatbot"
/>
<meta
property="og:title"
content="DAAN - Lightweight LLM Client for OpenAI & Compatible APIs"
/>
<meta
property="og:description"
content="DAAN is a concise and lightweight client for interacting with large large language models like OpenAI's GPT series. Features include a minimalist interface, custom API support, secure local storage, chat summary, and personalized settings."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="%WEBSITE_URL%" />
<meta property="og:image" content="%WEBSITE_URL%/cover.png" />
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="DAAN - Lightweight LLM Client for OpenAI & Compatible APIs"
/>
<meta
name="twitter:description"
content="DAAN is a concise and lightweight client for interacting with large language models like OpenAI's GPT series. Features include a minimalist interface, custom API support, secure local storage, chat summary, and personalized settings."
/>
<meta name="twitter:image" content="%WEBSITE_URL%/cover.png" />
<link rel="canonical" href="%WEBSITE_URL%" />
<link href="/src/styles.css" rel="stylesheet" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "DAAN",
"description": "DAAN is a concise and lightweight client for interacting with large language models like OpenAI's GPT series. Features include a minimalist interface, custom API support, secure local storage, chat summary, and personalized settings.",
"operatingSystem": "Web",
"applicationCategory": "https://schema.org/UtilitiesApplication",
"url": "%WEBSITE_URL%",
"image": "%WEBSITE_URL%/cover.png"
}
</script>
</head>
<body>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>