-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
28 lines (28 loc) · 1.36 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="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LLM RAM Calculator - Estimate LLM Memory Requirements</title>
<meta name="description" content="Calculate the maximum number of parameters that can fit in RAM for different quantization levels of large language models (LLMs)." />
<meta name="keywords" content="LLM, RAM, Calculator, AI, Machine Learning, Memory Requirements" />
<meta name="author" content="Ray Fernando" />
<meta property="og:title" content="LLM RAM Calculator" />
<meta property="og:description" content="Estimate memory requirements for large language models (LLMs) with our easy-to-use calculator." />
<meta property="og:image" content="https://llm-calc.vercel.ai/og.png" />
<meta property="og:url" content="https://llm-calc.rayfernando.ai" />
<meta name="twitter:card" content="summary_large_image" />
<link href="https://fonts.googleapis.com/css2?family=Rubik&family=Inter&display=swap" rel="stylesheet">
<style>
:root {
--font-heading: 'Rubik', sans-serif;
--font-body: 'Inter', sans-serif;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>