| Name | Type | Description |
|---|---|---|
query* | str | Text to look up most similar documents to. |
k | int | Default: 4Number of Documents to return. |
with_embedding | bool | Default: FalseWhether to include embeddings. |
search_type | Optional[str] | Default: 'vector' |
offset_limit | Optional[str] | Default: None |
projection_mapping | Optional[Dict[str, Any]] | Default: None |
full_text_rank_filter | Optional[List[Dict[str, str]]] | Default: None |
where | Optional[str] | Default: None |
weights | Optional[List[float]] | Default: None |
threshold | Optional[float] | Default: 0.5 |
**kwargs | Any | Default: {} |
Return docs most similar to query asynchronously.
Type of search to perform.
Offset limit clause.
Projection mapping.
Full text rank filter.
WHERE clause.
Weights for hybrid search.
Score threshold.
Additional keyword arguments.