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 @@ -29,7 +29,7 @@ dependencies = [
'unstructured>=0.18.14',
'art',
'pandas',
'ollama==0.5.3',
'ollama==0.5.4',
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.

The ollama package version update from 0.5.3 to 0.5.4 looks good. However, consider adding a comment or changelog entry explaining the reason for this upgrade. Also, ensure that this version bump is tested with your existing codebase to avoid breaking changes.

For better dependency management, consider using version ranges instead of exact pinning unless there's a specific reason for exact versions:

'ollama>=0.5.4,<0.6.0',

This allows for patch updates while preventing potentially breaking minor version changes.

'weasyprint',
'pyrit==0.9.0',
'codeattack @ git+https://github.com/marcorosa/CodeAttack',
Expand Down