Ritesh Thawkar
initial commit
6e443ec
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat with LLM</title>
<link rel="stylesheet" href="../static/styles.css">
</head>
<body>
<h3>This is a RAG application over the website <a href="https://uaelegislation.gov.ae/en">https://uaelegislation.gov.ae/en</a></h3>
<div class="chat-container">
<md-block class="chat-box" id="chat-box">
</md-block>
<div class="input-container">
<input type="text" id="chat-input" placeholder="Type your message here...">
<button id="send-button">Send</button>
</div>
</div>
<script type="module" src="https://md-block.verou.me/md-block.js"></script>
<script src="https://cdn.socket.io/4.5.0/socket.io.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/2.1.0/showdown.min.js" integrity="sha512-LhccdVNGe2QMEfI3x4DVV3ckMRe36TfydKss6mJpdHjNFiV07dFpS2xzeZedptKZrwxfICJpez09iNioiSZ3hA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="../static/script.js"></script>
</body>
</html>