This commit is contained in:
Timothy Jaeryang Baek
2025-07-14 14:05:06 +04:00
parent 0013f5c1fc
commit 18bd83413b
3 changed files with 16 additions and 4 deletions

View File

@@ -652,8 +652,14 @@ async def chat_completion_files_handler(
query, prefix=prefix, user=user
),
k=request.app.state.config.TOP_K,
reranking_function=lambda sentences: request.app.state.RERANKING_FUNCTION(
sentences, user=user
reranking_function=(
lambda sentences: (
request.app.state.RERANKING_FUNCTION(
sentences, user=user
)
if request.app.state.RERANKING_FUNCTION
else None
)
),
k_reranker=request.app.state.config.TOP_K_RERANKER,
r=request.app.state.config.RELEVANCE_THRESHOLD,