hp_chatbot/chat-interface/index.html
michael 594f749d4c Initial commit: HP Marketing Materials GraphRAG Chatbot
Full-stack GraphRAG chatbot for HP marketing materials with:
- Python/Flask backend with custom ReAct agent (LlamaIndex)
- Neo4j knowledge graph + vector search hybrid retrieval
- LlamaParse multimodal document processing (text + images)
- React/Vite frontend with conversation management
- MongoDB conversation persistence
- MSAL authentication support

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-23 08:37:58 -06:00

31 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Helps with MIME type issues -->
<meta http-equiv="X-Content-Type-Options" content="nosniff" />
<title>HP Marketing Materials Chatbot</title>
<!-- MSAL Authentication -->
<script src="https://alcdn.msauth.net/browser/2.15.0/js/msal-browser.min.js" crossorigin="anonymous"></script>
<style>
#protected-content {
display: none;
}
</style>
</head>
<body>
<div id="login-container" class="flex items-center justify-center h-screen">
<div class="text-center">
<h1 class="text-2xl font-bold mb-4">HP Marketing Materials Chatbot</h1>
<p class="mb-4">Please sign in to access the chatbot.</p>
<button id="signin-button" class="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600">
Sign in with Microsoft
</button>
</div>
</div>
<div id="root" style="display: none;"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>