google-labs-jules[bot] commited on
Commit
6ca41f1
·
1 Parent(s): c359015

Fix: Add missing huggingface-hub dependency

Browse files

The previous commit to update the embedding model resulted in an
ImportError because `sentence-transformers` could not import
`huggingface-hub`.

This commit explicitly adds `huggingface-hub==0.0.8` to
`requirements.txt`. This version is a dependency of
`transformers==4.6.0`, which is recommended by
`sentence-transformers==2.2.2`.

This should resolve the import error and allow the application
to start correctly with the new embedding model.

Files changed (1) hide show
  1. requirements.txt +1 -0
requirements.txt CHANGED
@@ -5,3 +5,4 @@ pandas
5
  openai
6
  sentence-transformers==2.2.2
7
  torch==2.2.0
 
 
5
  openai
6
  sentence-transformers==2.2.2
7
  torch==2.2.0
8
+ huggingface-hub==0.0.8