-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (27 loc) · 953 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Ollama Web</title>
<link rel="stylesheet" href="./static/styles/index.css" />
</head>
<body>
<!-- https://github.com/ollama/ollama/blob/main/docs/api.md#generate-a-chat-completion -->
<main>
<div id="hello-section" class="hello-dev">
<h1>What can I do for you today?</h1>
</div>
<div id="chat-thread" class="chat-container"></div>
<div class="chat-input">
<input id="user-query" type="text" />
<select name="models" id="model-select"></select>
<button id="chat-send">Send</button>
</div>
<span id="ollama-status"></span>
</main>
</body>
<script src="./static/scripts/index.js"></script>
<script src="./static/scripts/api.js"></script>
<script src="./static/scripts/models.js"></script>
</html>