Skip to content
Closed
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
6 changes: 3 additions & 3 deletions content/develop/ai/redisvl/0.12.1/api/query.md
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,6 @@ Return the USE_SEARCH_HISTORY parameter for the query.

{{< note >}}
**Runtime Parameters for Performance Tuning**
{{< /note >}}

VectorQuery supports runtime parameters for HNSW and SVS-VAMANA indexes that can be adjusted at query time without rebuilding the index:

Expand Down Expand Up @@ -498,6 +497,7 @@ query = VectorQuery(
search_buffer_capacity=30
)
```
{{< /note >}}

## VectorRangeQuery

Expand Down Expand Up @@ -945,7 +945,6 @@ Return the USE_SEARCH_HISTORY parameter for the query.

{{< note >}}
**Runtime Parameters for Range Queries**
{{< /note >}}

VectorRangeQuery supports runtime parameters for controlling range search behavior:

Expand Down Expand Up @@ -973,6 +972,7 @@ query = VectorRangeQuery(
use_search_history='AUTO' # SVS-VAMANA only
)
```
{{< /note >}}

## HybridQuery

Expand Down Expand Up @@ -1241,7 +1241,6 @@ Using query-time stopwords with index-level `STOPWORDS 0` is counterproductive.

{{< note >}}
**Runtime Parameters for Hybrid Queries**
{{< /note >}}

**Important:** AggregateHybridQuery uses FT.AGGREGATE commands which do NOT support runtime parameters.
Runtime parameters (`ef_runtime`, `search_window_size`, `use_search_history`, `search_buffer_capacity`)
Expand All @@ -1262,6 +1261,7 @@ query = VectorQuery(
ef_runtime=150 # Runtime parameters work with VectorQuery
)
```
{{< /note >}}

## TextQuery

Expand Down