-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
42 lines (41 loc) · 1.34 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
<!DOCTYPE html>
<head>
<title>NLG Demo</title>
<script src="tools/jquery-3.1.1.min.js"></script>
<script src="tools/bootstrap.min.js"></script>
<script src="tools/nlgWebsite.js"></script>
<link rel="stylesheet" href="tools/bootstrap.min.css">
<link rel="stylesheet" href="tools/style.css">
<link rel="shortcut icon" href="tools/favicon.ico" type="image/x-icon">
<link rel="icon" href="tools/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>OpenAI LM demo</h1>
<h2><small>Let the OpenAI model complete your sentence.</small></h2>
</div>
<div class="row">
<div class="col-sm-12">
<form>
<input id="enableDialogue" type="checkbox" onchange="checkboxes(this)"> This is a dialogue
<br>
<input id="separateTalkTurns" type="checkbox" onchange="checkboxes(this)" checked="checked"> These are disconnected tries
</form>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-6">
<div id="history"></div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<textarea id="inputfield" rows="2" cols="100" style="color: grey;font-style: italic;">Enter your text here.</textarea>
<br>
<button class="btn btn-primary" onclick="getResponse()">Submit</button>
</div>
</div>
</div>
</bod>