Initial implementation of the chat application with MariaDB and ArangoDB integration, including Docker setup and web interface.

This commit is contained in:
st-server
2026-01-06 15:26:14 +01:00
parent f0e2fd294b
commit b3f6ecb1bc
13 changed files with 296 additions and 0 deletions

17
web/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Projekt-LLM Chat</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="chat-container">
<input id="project" placeholder="Projektname">
<div id="messages"></div>
<input id="message" placeholder="Schreibe eine Nachricht">
<button onclick="sendMessage()">Senden</button>
</div>
<script src="script.js"></script>
</body>
</html>