Browse Source

Fix: correct wrong vLLM rerank model (#5399)

### What problem does this PR solve?

Correct wrong vLLM rerank model #4316 

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
tags/v0.17.0
Yongteng Lei 8 months ago
parent
commit
0284248c93
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      rag/llm/__init__.py

+ 1
- 1
rag/llm/__init__.py View File

@@ -247,7 +247,7 @@ RerankModel = {
"NVIDIA": NvidiaRerank,
"LM-Studio": LmStudioRerank,
"OpenAI-API-Compatible": OpenAI_APIRerank,
"VLLM": OpenAI_APIRerank,
"VLLM": CoHereRerank,
"Cohere": CoHereRerank,
"TogetherAI": TogetherAIRerank,
"SILICONFLOW": SILICONFLOWRerank,

Loading…
Cancel
Save