JJ94 commited on
Commit
e24e31f
·
verified ·
1 Parent(s): c138cbc

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +3 -3
templates/index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Chatbot</title>
7
  <script>
8
  async function sendMessage() {
9
  const message = document.getElementById("userInput").value;
@@ -24,9 +24,9 @@
24
  </script>
25
  </head>
26
  <body>
27
- <h2>Chatbot</h2>
28
  <div id="chatBox" style="border: 1px solid #000; padding: 10px; width: 50%; height: 300px; overflow-y: scroll;"></div>
29
  <input type="text" id="userInput" placeholder="Type a message..." />
30
  <button onclick="sendMessage()">Send</button>
31
  </body>
32
- </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Chat with LLaMA</title>
7
  <script>
8
  async function sendMessage() {
9
  const message = document.getElementById("userInput").value;
 
24
  </script>
25
  </head>
26
  <body>
27
+ <h2>Chat with LLaMA</h2>
28
  <div id="chatBox" style="border: 1px solid #000; padding: 10px; width: 50%; height: 300px; overflow-y: scroll;"></div>
29
  <input type="text" id="userInput" placeholder="Type a message..." />
30
  <button onclick="sendMessage()">Send</button>
31
  </body>
32
+ </html>