-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 2.39 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
51
52
53
54
55
56
57
58
59
60
61
62
63
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>GeminiChat</title>
<meta name="description" content="A user-friendly, open-source web application for chatting with Google's Gemini AI using your API key.">
<script src="js/library/[email protected]"></script>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github-dark-dimmed.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="css/chat.css">
<script>
let chat_id = new Date().getTime();
</script>
<meta property="og:type" content="article">
<meta property="og:title" content="OpenSource GeminiChat Interface">
<meta property="og:description" content="Chat interface for Google Gemini">
<meta property="og:image" content="https://eliaspereirah.github.io/GeminiChat/imgs/screenshot.png">
<meta property="og:locale" content="en-US">
<meta property="og:url" content="https://eliaspereirah.github.io/GeminiChat/">
</head>
<body>
<div class="container">
<div id="all_dialogs"></div>
<div id="settings"></div>
<div class="conversations">
<div class="jsClose"></div>
<div class="history">
<div id="new_chat">New Chat</div>
<div id="delete_history">
Delete:
<label class="switch">
<input id="can_delete" type="checkbox">
<span class="slider round"></span>
</label>
</div>
</div>
</div>
<div class="chat">
<div id="chat-messages">
<div class="message start_msg"><p>Welcome do GeminiChat!</p><br></div>
</div>
<div id="loading">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div class="chat-input">
<div class="chat_wrap">
<label><textarea placeholder="Let's talk"></textarea></label>
<button>Send</button>
</div>
</div>
</div>
</div>
<script async="async" src="js/script.js"></script>
</body>
</html>