Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return recall rate in search result for V2 #1236

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ public SearchResp search(MilvusServiceGrpc.MilvusServiceBlockingStub blockingStu
return SearchResp.builder()
.searchResults(convertUtils.getEntities(response))
.sessionTs(response.getSessionTs())
.recalls(response.getResults().getRecallsList())
.build();
}

Expand All @@ -197,6 +198,7 @@ public SearchResp hybridSearch(MilvusServiceGrpc.MilvusServiceBlockingStub block

return SearchResp.builder()
.searchResults(convertUtils.getEntities(response))
.recalls(response.getResults().getRecallsList())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
public class SearchResp {
private List<List<SearchResult>> searchResults;
private long sessionTs = 1L; // default eventually ts
private List<Float> recalls;

@Data
@SuperBuilder
Expand Down
Loading