fix: default 'search_type' to None
This commit is contained in:
parent
b331dd0b76
commit
4feac9683a
1 changed files with 2 additions and 2 deletions
|
|
@ -315,8 +315,8 @@ def search( # pragma: no cover
|
|||
"-f",
|
||||
help="SQL WHERE clause to filter documents (e.g., \"uri LIKE '%arxiv%'\")",
|
||||
),
|
||||
search_type: SearchType = typer.Option(
|
||||
"hybrid",
|
||||
search_type: SearchType | None = typer.Option(
|
||||
None,
|
||||
"--search-type",
|
||||
"-s",
|
||||
help="Type of search to perform (text searches only)",
|
||||
|
|
|
|||
Loading…
Reference in a new issue