-
Notifications
You must be signed in to change notification settings - Fork 96
/
index.html
28 lines (26 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Stream Demo by @qiayue</title>
<link rel="stylesheet" href="./static/css/monokai-sublime.css">
<link rel="stylesheet" href="./static/css/chat.css?v=03240800">
<link rel="shortcut icon" href="./favicon.ico" />
</head>
<body>
<div id="app">
<div class="messages-container">
<div id="messages"></div>
</div>
<div class="input-area">
<textarea id="input" placeholder="说几句吧……"></textarea>
<button id="send" onclick="sendMessage()">发送</button>
</div>
<div style="position: fixed;top: 10px;right: 10px;"><a href="https://github.com/qiayue/php-openai-gpt-stream-chat-api-webui" target="_blank"><img alt="GitHub forks badge" src="https://img.shields.io/github/stars/qiayue/php-openai-gpt-stream-chat-api-webui?logo=github"></a></div>
</div>
<script src="./static/js/marked.min.js"></script>
<script src="./static/js/highlight.min.js"></script>
<script src="./static/js/chat.js?v=03240800"></script>
</body>
</html>