Skip to content

Commit

Permalink
Add default value for pre_reordering_num_neighbors in cli options.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sheharyar570 authored and alwayslove2013 committed Nov 28, 2024
1 parent 97f2688 commit e67a0a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vectordb_bench/backend/clients/alloydb/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class AlloyDBScaNNTypedDict(AlloyDBTypedDict):
click.option("--num-leaves-to-search", type=int, help="Number of leaves to search", required=True)
]
pre_reordering_num_neighbors: Annotated[
Optional[int],
click.option("--pre-reordering-num-neighbors", type=int, help="Pre-reordering number of neighbors",)
int,
click.option("--pre-reordering-num-neighbors", type=int, help="Pre-reordering number of neighbors", default=200)
]
max_top_neighbors_buffer_size: Annotated[
int,
Expand Down

0 comments on commit e67a0a6

Please sign in to comment.