Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ langchain = [
"langchain-community>=0.4.2,<0.5",
"langchain-openai>=1.3.0,<1.4",
"langchain-anthropic>=1.4.4,<1.5",
"faiss-cpu>=1.14.2,<2.0", # Vector store for dedup workflow
"faiss-cpu>=1.14.3,<2.0", # Vector store for dedup workflow
]

[tool.setuptools]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ langchain-core==1.4.3
langchain-community==0.4.2
langchain-openai==1.3.0
langchain-anthropic==1.4.4
faiss-cpu==1.14.2
faiss-cpu==1.14.3

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Regenerate the lockfile with the faiss bump

In CI/local setups that install from requirements.lock, this new direct pin is not exercised because requirements.lock still contains faiss-cpu==1.14.2 at line 61. The repo's installers prefer the lockfile (for example .github/scripts/install-ci-deps.sh:91-92 and scripts/setup_env.sh:45-46), so those environments continue using the old Faiss version while requirements.txt and pyproject.toml claim 1.14.3. Please regenerate and commit requirements.lock with the dependency bump.

Useful? React with 👍 / 👎.

Loading