-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathindex.html
28 lines (27 loc) · 1.2 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/LLMX.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LLM X</title>
<meta name="author" content="@mrdjohnson" />
<meta name="description" content="A simple way to chat with your local LLMs like Ollama" />
<meta
name="keywords"
content="react, ollama, llm, large language models, local llm, llmx, llm-x"
/>
<link rel="icon" href="/favicon.ico" sizes="48x48" />
<link rel="icon" href="/favicon.svg" sizes="any" type="image/svg+xml" />
<meta property="og:image" content="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" />
<meta name="theme-color" content="oklch(0.211484 0.01165 254.088)" />
<meta name="twitter:title" content="LLM-X; an easy UI for Local Models" />
<meta name="twitter:image" content="/favicon.svg" />
<meta name="google-site-verification" content="m3PIOQkzBaTA1qb9nTk2a41Q_VqrfcuZ-9Vcb0cCNjI" />
</head>
<body style="background-color: black;">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>