This commit is contained in:
Timothy J. Baek 2024-09-29 23:20:37 +02:00
parent f7aba20d79
commit 8206c47a47

View File

@ -193,7 +193,8 @@ def update_reranking_model(
if any(model in reranking_model for model in ["jinaai/jina-colbert-v2"]):
try:
app.state.sentence_transformer_rf = ColBERT(
get_model_path(reranking_model, auto_update)
get_model_path(reranking_model, auto_update),
env="docker" if DOCKER else None,
)
except Exception as e:
log.error(f"ColBERT: {e}")