Fix CI failure: Add gensim dependency for Node2Vec

- Add gensim>=4.3.0 to core dependencies
- Required for Node2Vec embeddings in enhanced vector store
- Fixes ImportError in benchmark tests
- Ensures Node2Vec functionality works out of the box
This commit is contained in:
KaifAhmad1
2026-02-11 20:54:16 +05:30
parent 0254843fa3
commit 852bf0596d
+2 -1
View File
@@ -77,7 +77,8 @@ dependencies = [
"toml>=0.10.0",
"python-dotenv>=0.20.0",
"loguru>=0.6.0",
"structlog>=22.1.0"
"structlog>=22.1.0",
"gensim>=4.3.0"
]
# ---------------- OPTIONAL DEPENDENCIES ----------------