Skip to content
Merged
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 @@ -24,7 +24,7 @@ dependencies = [
'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',
'PyYAML==6.0.2',
'PyYAML==6.0.3',
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Good practice to update PyYAML to version 6.0.3. This appears to be a security or bug fix update. However, consider using version ranges instead of pinning to exact versions for better dependency management:

'PyYAML>=6.0.3,<7.0.0',

This approach allows for patch updates while maintaining compatibility, unless there's a specific reason to pin to the exact version (e.g., known compatibility issues with newer versions).

'requests==2.32.5',
'unstructured==0.18.15',
'art==6.5',
Expand Down
Loading