Complete Refactor

This commit is contained in:
2025-03-30 01:28:07 -04:00
parent 158afc78c7
commit 46be33b10a
28 changed files with 723 additions and 3081 deletions

31
Backend/static/index.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSM Conversation Bot</title>
<link rel="stylesheet" href="css/styles.css">
<script src="https://cdn.socket.io/4.6.0/socket.io.min.js"></script>
<script src="js/client.js" defer></script>
</head>
<body>
<header>
<h1>CSM Conversation Bot</h1>
<p>Talk to the AI and get responses in real-time!</p>
</header>
<main>
<div id="conversation" class="conversation"></div>
<div class="controls">
<button id="startButton">Start Conversation</button>
<button id="stopButton">Stop Conversation</button>
</div>
<div class="status-indicator">
<div id="statusDot" class="status-dot"></div>
<div id="statusText">Disconnected</div>
</div>
</main>
<footer>
<p>Powered by CSM and Llama 3.2</p>
</footer>
</body>
</html>