Skip to content
Merged
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.20',
'unstructured==0.18.21',
'art==6.5',
'pandas==2.3.3',
'ollama==0.6.1',
Comment on lines 27 to 32
Copy link
Contributor

Choose a reason for hiding this comment

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

Consider using version ranges instead of pinning exact versions for better dependency flexibility. The current approach pins exact versions which can lead to dependency conflicts and makes updates more difficult.

'unstructured>=0.18.21,<0.19.0',
'PyYAML>=6.0.0,<7.0.0',
'requests>=2.32.0,<3.0.0',
'pandas>=2.3.0,<3.0.0',
'ollama>=0.6.0,<0.7.0',
'art>=6.5.0,<7.0.0'

This approach allows patch and minor version updates while preventing breaking changes from major version updates. Only pin exact versions when you have specific compatibility requirements or security concerns.

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.