-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> GPT API Test </title>
<link rel="icon" type="image/svg+xml" href="/icon.svg"/>
<link rel="stylesheet" type="text/css" href="CSS/style.css">
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
</head>
<body>
<div id="main">
<div class="input-area">
<div class="input-group flex">
<label for="mods" class="mods-label">Mods:</label>
<select id="mods" class="mods middle" ref="mods" v-model="mod_idx">
<option class="mods-opt" value="" disabled>Select a Module</option>
<option class="mods-opt" v-for="(idx, key) in mods" :value="key">{{ key }}</option>
</select>
<button type="button" class="btn txt right" id="mod_btn" @click="change_mod">Confirm</button>
</div>
<div class="input-group">
<label for="user-input" class="msg-label">User Input:</label>
<textarea id="user-input" class="msg" @keydown.enter.exact="enterHandle($event)" @keydown.enter.shift.exact="" v-model="user_input" ref="txar" disabled></textarea>
<div class="block">
<button type="button" id="yes" @click="gpt_api($event)" class="btn txt" disabled>Submit</button>
<button type="button" id="stop" @click="stop_fetch" class="btn right txt" ref="stop" disabled> Cancel </button>
</div>
</div>
</div>
<div id="result" class="container" ref="result">
<div v-if="!comments.length" class="placeholder">The result will come here!</div>
<div v-for="item in comments">
<p class="role">{{ item.role }}:</p>
<pre class="content">{{ item.content }}</pre>
</div>
<button id="scr" class="btn right-bottom txt" v-show="scr_show" @click="scroll_down"> To the bottom </button>
</div>
</div>
<script src="JS/gpt.js" type="module"></script>
</body>
</html>