-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (43 loc) · 1.79 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/1F9EE.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Siddhesh Agarwal" />
<meta name="description" content="A Simple No-Nonsense LLM Price Calculator" />
<meta name="keywords"
content="LLM price calculator, OpenAI pricing, language model cost estimator, AI model pricing, token cost calculator, GPT-3.5 pricing, GPT-4 cost, AI service pricing, machine learning model cost, AI token calculator" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://llmprice.fyi/" />
<!-- metadata for Open Graph -->
<meta property="og:title" content="LLM Price Calculator" />
<meta property="og:description" content="A Simple No-Nonsense LLM Price Calculator" />
<meta property="og:url" content="https://llmprice.fyi/" />
<meta property="og:type" content="website" />
<!-- metadata for Twitter -->
<meta name="twitter:title" content="LLM Price Calculator" />
<meta name="twitter:description" content="A Simple No-Nonsense LLM Price Calculator" />
<meta name="twitter:card" content="summary_large_image" />
<title>LLM Price Calculator</title>
<link rel="stylesheet" href="./tailwind.css">
<!-- Structured Data for SEO -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "LLM Price Calculator",
"url": "https://llmprice.fyi/",
"author": {
"@type": "Person",
"name": "Siddhesh Agarwal"
},
"description": "A Simple No-Nonsense LLM Price Calculator"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>