mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
fix nltk averaged_perceptron_tagger download and fix score limit is none (#7582)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
This commit is contained in:
parent
a7743a4f47
commit
7ae728a9a3
|
@ -12,5 +12,6 @@
|
||||||
</component>
|
</component>
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="" vcs="Git" />
|
<mapping directory="" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
||||||
|
|
|
@ -65,7 +65,7 @@ COPY --from=packages ${VIRTUAL_ENV} ${VIRTUAL_ENV}
|
||||||
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
ENV PATH="${VIRTUAL_ENV}/bin:${PATH}"
|
||||||
|
|
||||||
# Download nltk data
|
# Download nltk data
|
||||||
RUN python -c "import nltk; nltk.download('punkt')"
|
RUN python -c "import nltk; nltk.download('punkt'); nltk.download('averaged_perceptron_tagger')"
|
||||||
|
|
||||||
# Copy source code
|
# Copy source code
|
||||||
COPY . /app/api/
|
COPY . /app/api/
|
||||||
|
|
|
@ -616,6 +616,7 @@ class DatasetRetrieval:
|
||||||
for document in all_documents:
|
for document in all_documents:
|
||||||
if score_threshold is None or document.metadata['score'] >= score_threshold:
|
if score_threshold is None or document.metadata['score'] >= score_threshold:
|
||||||
filter_documents.append(document)
|
filter_documents.append(document)
|
||||||
|
|
||||||
if not filter_documents:
|
if not filter_documents:
|
||||||
return []
|
return []
|
||||||
filter_documents = sorted(filter_documents, key=lambda x: x.metadata['score'], reverse=True)
|
filter_documents = sorted(filter_documents, key=lambda x: x.metadata['score'], reverse=True)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user