Skip to content
Open
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 backend-agent/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = [
'Flask-Cors==6.0.1',
'flask_sock==0.7.0',
'Flask-SQLAlchemy==3.1.1',
'langchain>=0.3.0,<0.4.0',
'langchain>=0.3.0,<1.2.0',
'langchain-community>=0.3.0,<0.4.0',
'langchain-core>=0.3.0,<0.4.0',
'langchain-text-splitters>=0.3.0,<0.4.0',
Comment on lines +23 to 26
Copy link
Contributor

Choose a reason for hiding this comment

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

Version constraint inconsistency detected. The langchain package allows versions up to <1.2.0, but related packages (langchain-community, langchain-core, langchain-text-splitters) are constrained to <0.4.0. This creates a potential compatibility issue where langchain could be upgraded to a version that's incompatible with its dependencies.

Consider aligning all langchain-related packages to use consistent version ranges:

'langchain>=0.3.0,<0.4.0',
'langchain-community>=0.3.0,<0.4.0',
'langchain-core>=0.3.0,<0.4.0',
'langchain-text-splitters>=0.3.0,<0.4.0',

Or if you need the newer langchain version, update all related packages accordingly to maintain compatibility.

Expand Down
2 changes: 1 addition & 1 deletion backend-agent/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.