Skip to content

Commit aba7d1e

Browse files
committed
feat(docs): Update documentation and configuration for Neo4j memory settings
- Enhanced `.env.example` and `docker-compose.yml` to include memory configuration options for Neo4j, allowing users to specify heap and page cache sizes for improved performance with large datasets. - Updated `README.md` to reflect these changes and provide clearer instructions for setting up the environment. - Improved the `docs_autopilot_enhanced.py` script to gather comprehensive context for documentation generation, ensuring accurate and up-to-date information is included. These updates enhance the usability and performance of the TriBridRAG system, particularly for users working with large corpora.
1 parent 32fe23a commit aba7d1e

9 files changed

Lines changed: 1417 additions & 733 deletions

File tree

.env.example

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ NEO4J_URI=bolt://localhost:7687
2424
NEO4J_USER=neo4j
2525
NEO4J_PASSWORD=password
2626

27+
# Neo4j container memory (for large corpora / graph indexing).
28+
# These are applied by docker-compose.yml.
29+
# NEO4J_HEAP_INIT=2G
30+
# NEO4J_HEAP_MAX=4G
31+
# NEO4J_PAGECACHE=2G
32+
2733
# ===== Embedding Configuration =====
2834
EMBEDDING_PROVIDER=openai # openai, voyage, local
2935
EMBEDDING_MODEL=text-embedding-3-small

0 commit comments

Comments
 (0)