-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MuleChain AI Agent</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/logo.png" type="image/png">
</head>
<body>
<div id="container">
<div class="header">
<img src="assets/logo_2.png" alt="MuleChain AI Agent Logo" class="logo">
<div class="header-text">
<h1>MuleChain AI Agent</h1>
<h2>I know everything about your Tender Documents</h2>
</div>
<img src="assets/mulechainai.png" alt="MuleChain AI Agent Logo" class="logo">
</div>
<div id="chatWindow">
<div id="messages"></div>
<div id="inputArea">
<input type="text" id="userInput" placeholder="Type your message here...">
<button id="sendButton">Send</button>
</div>
</div>
<div id="sourcesWindow">
<table id="sourcesTable">
<thead>
<tr>
<th>Score</th>
<th>Text Segment</th>
<th>File Name</th>
<th>Absolute Directory Path</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
<script src="script.js"></script>
</body>
</html>