Skip to content

Commit fc5bdd9

Browse files
committed
init
1 parent 2e5859f commit fc5bdd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/routers/rerank.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ async def rerank_documents(
9494

9595
# Build results with original indices
9696
original_indices, documents_list = zip(*valid_docs)
97-
results: List[RerankResult] = []
97+
results = []
9898

9999
for i, (orig_idx, doc) in enumerate(zip(original_indices, documents_list)):
100100
results.append(RerankResult(text=doc, score=scores[i], index=orig_idx))

0 commit comments

Comments
 (0)