forked from andrisgauracs/AI-Code-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Code Assistant</title>
<link rel="stylesheet" href="styles.css" />
<script src="main.js" type="module" defer></script>
</head>
<body>
<div class="container">
<h1>AI Code Assistant</h1>
<div
id="loading-indicator"
class="loading-indicator"
style="display: none"
>
<span class="spinner"></span> Loading model...
</div>
<p>
Start typing JavaScript code below. The AI will suggest completions
after you stop typing for 1 second. Press <strong>Tab</strong> to accept
suggestions or <strong>Esc</strong> to dismiss them.
</p>
<textarea
id="long-text-input"
placeholder="Start typing JavaScript code..."
rows="10"
style="font-family: 'Courier New', monospace; font-size: 14px"
></textarea>
</div>
</body>
</html>