Skip to content
Open
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
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,5 @@ google-generativeai==0.1.0
unstructured==0.8.1
ai21==1.2.6
typing-extensions==4.5.0
llama_cpp_python==0.2.7
llama_cpp_python==0.2.7
pyasn1>=0.6.2 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

The specified version >=0.6.2 for pyasn1 will cause dependency installation to fail because version 0.6.2 does not exist on PyPI. The latest version available is 0.6.0.

If 0.6.2 is a private or patched version, the build configuration needs to be updated to point to the correct package index. Otherwise, please update this to a valid version that resolves the security vulnerability. I'm suggesting 0.6.0 as it is the latest public version.

pyasn1>=0.6.0 # not directly required, pinned by Snyk to avoid a vulnerability

Loading