Skip to content

Commit

Permalink
support string arrays for full text search
Browse files Browse the repository at this point in the history
  • Loading branch information
scottwey committed Sep 15, 2023
1 parent be3b5ef commit d94db32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/starpoint/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def query(
collection_name: Optional[str] = None,
query_embedding: Optional[List[float]] = None,
params: Optional[List[Any]] = None,
text_search_query: Optional[str] = None,
text_search_query: Optional[List[str]] = None,
) -> Dict[Any, Any]:
"""Queries a collection. This could be by sql or query embeddings.
`query()` method from [`Reader`](#reader-objects).
Expand Down
2 changes: 1 addition & 1 deletion python/starpoint/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def query(
collection_name: Optional[str] = None,
query_embedding: Optional[List[float]] = None,
params: Optional[List[Any]] = None,
text_search_query: Optional[str] = None,
text_search_query: Optional[List[str]] = None,
) -> Dict[Any, Any]:
"""Queries a collection. This could be by sql or query embeddings.
Expand Down

0 comments on commit d94db32

Please sign in to comment.