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 @@ -26,7 +26,7 @@ dependencies = [
'langchain-text-splitters>=0.3.0,<0.4.0',
'PyYAML==6.0.3',
'requests==2.32.5',
'unstructured==0.18.31',
'unstructured==0.18.32',
Copy link
Contributor

Choose a reason for hiding this comment

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

Good practice updating the unstructured dependency to a newer patch version. However, consider reviewing the changelog for version 0.18.32 to understand what changes were introduced. For better dependency management in the future, consider:

  1. Using version ranges with compatible release operator for patch updates:
'unstructured~=0.18.31',
  1. Or allowing patch updates within the minor version:
'unstructured>=0.18.31,<0.19.0',

This approach would automatically pick up patch fixes while maintaining stability, similar to how langchain-text-splitters is already configured.

'art==6.5',
'pandas==2.3.3',
'ollama==0.6.1',
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.