dashi6174
commited on
Commit
·
af5bb18
1
Parent(s):
6db9c7b
The fasttext library is missing, and it is used in the operators.py file. (#925)
Browse files### What problem does this PR solve?
_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._
### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
- requirements.txt +1 -0
- requirements_dev.txt +1 -0
requirements.txt
CHANGED
@@ -134,3 +134,4 @@ yarl==1.9.4
|
|
134 |
zhipuai==2.0.1
|
135 |
BCEmbedding
|
136 |
loguru==0.7.2
|
|
|
|
134 |
zhipuai==2.0.1
|
135 |
BCEmbedding
|
136 |
loguru==0.7.2
|
137 |
+
fasttext==0.9.2
|
requirements_dev.txt
CHANGED
@@ -122,3 +122,4 @@ BCEmbedding
|
|
122 |
loguru==0.7.2
|
123 |
ollama==0.1.8
|
124 |
redis==5.0.4
|
|
|
|
122 |
loguru==0.7.2
|
123 |
ollama==0.1.8
|
124 |
redis==5.0.4
|
125 |
+
fasttext==0.9.2
|