|
|
<!DOCTYPE html> |
|
|
<html lang="en"> |
|
|
<head> |
|
|
<meta charset="UTF-8" /> |
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" /> |
|
|
<title>WebLLM Chatbot</title> |
|
|
<link rel="stylesheet" href="style.css" /> |
|
|
</head> |
|
|
<body> |
|
|
<div class="chat-container"> |
|
|
<div id="chat-box" class="chat-box"></div> |
|
|
<div class="input-area"> |
|
|
<input id="user-input" type="text" placeholder="Type your message..." autocomplete="off" /> |
|
|
<button id="send-button">Send</button> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
<script type="module" src="main.js"></script> |
|
|
</body> |
|
|
</html> |