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>
39 lines
454 B
Text
39 lines
454 B
Text
# Environment variables (contain API keys and credentials)
|
|
.env
|
|
.env.*
|
|
env
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
venv/
|
|
.venv/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Node
|
|
chat-interface/node_modules/
|
|
chat-interface/dist/
|
|
|
|
# Generated data (runtime artifacts, not source code)
|
|
uploads/
|
|
index_storage/
|
|
*.log
|
|
|
|
# Large binary source documents (too large for git)
|
|
supporting_files/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Claude Code
|
|
.claude/
|