-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 998 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 998 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
<title>Pulse AI</title>
</head>
<body>
<main class="app">
<header class="app-header">
<h1>Pulse AI</h1>
<p>Run AI locally, or use cloud models at low costs. Explore our plans, pay by usage or use AI locally.</p>
</header>
<section id="messages" class="messages" aria-live="polite"></section>
<form id="composer" class="composer">
<textarea
id="prompt"
name="prompt"
rows="3"
placeholder="Ask something..."
required
></textarea>
<button id="send" type="submit"><img src="assets/arrow-up.svg"></button>
</form>
</main>
<script type="module" src="/src/main.js"></script>
</body>
</html>