From 9e3a0e4d036f80b5d59f8b40a024ac9bc5bfa797 Mon Sep 17 00:00:00 2001 From: dashi6174 Date: Mon, 27 May 2024 08:18:47 +0800 Subject: [PATCH] The fasttext library is missing, and it is used in the operators.py file. (#925) ### 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 + requirements_dev.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index cc57273f7..9c427dfe1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -134,3 +134,4 @@ yarl==1.9.4 zhipuai==2.0.1 BCEmbedding loguru==0.7.2 +fasttext==0.9.2 diff --git a/requirements_dev.txt b/requirements_dev.txt index f1923d2ce..c8f9cf652 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -122,3 +122,4 @@ BCEmbedding loguru==0.7.2 ollama==0.1.8 redis==5.0.4 +fasttext==0.9.2