-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OllaSeek Local Chat Application</title>
<meta name="description" content="OllaSeek Local Chat Application - A simple web-based chat application using Ollama and DeepSeek for local user, developed by Isaac Talb">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="/olla-seek/android-chrome-512x512.png">
<link rel="apple-touch-icon" href="/olla-seek/android-chrome-512x512.png">
<link rel="manifest" href="/olla-seek/site.webmanifest">
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/4.3.0/marked.min.js"></script>
</head>
<body>
<div class="chat-container">
<div class="chat-header">
<h3>OllaSeek ~ Local Chat</h3>
</div>
<div class="chat-messages" id="chat-messages">
<!-- Messages will be displayed here -->
</div>
<div id="ai-typing-indicator" style="display: none;">
<p>Wait a moment! OllaSeek is thinking ... </p>
</div>
<div class="chat-input">
<textarea id="user-input" placeholder="Type your message here..."></textarea>
<button id="send-button">Send</button>
</div>
<div style="display: flex; justify-content: center; margin: 0.5rem 0 0.5rem 0;">
<button id="clear-chat-button">Clear Chat History</button>
<button style="margin-left: 0.5rem;" id="source-code-button" onclick="location.href='https://github.com/IsaacTalb/OllaSeek-Chat-Local'">Source Code</button>
<button style="margin-left: 0.5rem;" id="contact-button" onclick="location.href='https://isaac.duckcloud.info/'">Contact Me</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>