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 @@ -22,7 +22,7 @@ dependencies = [
'Flask-SQLAlchemy==3.1.1',
'langchain>=0.3.0,<0.4.0',
'langchain-community>=0.3.0,<0.4.0',
'langchain-core>=0.3.0,<0.4.0',
'langchain-core>=0.3.0,<1.2.0',
'langchain-text-splitters>=0.3.0,<0.4.0',
Comment on lines -25 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.

The version range change for langchain-core from <0.4.0 to <1.2.0 is inconsistent with other langchain dependencies and potentially risky. This creates a significant version mismatch where langchain-core could be at version 1.1.x while other langchain packages are constrained to 0.3.x versions.

Consider maintaining consistency across all langchain dependencies:

'langchain-core>=0.3.0,<0.4.0',

If a newer version of langchain-core is specifically required, update all related langchain dependencies together to ensure compatibility:

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

'PyYAML==6.0.3',
'requests==2.32.5',
Expand Down
8 changes: 4 additions & 4 deletions backend-agent/uv.lock

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