-
Notifications
You must be signed in to change notification settings - Fork 59
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
We're generating markdown docs using a Sphinx extension.
I noticed that the .. code-block:: python bit has a leading space. This results in an incorrectly formatted markdown file.
redis-vl-python/redisvl/query/aggregate.py
Lines 19 to 25 in 4154aae
| class HybridQuery(AggregationQuery): | |
| """ | |
| HybridQuery combines text and vector search in Redis. | |
| It allows you to perform a hybrid search using both text and vector similarity. | |
| It scores documents based on a weighted combination of text and vector similarity. | |
| .. code-block:: python |
compared to the correct:
redis-vl-python/redisvl/query/query.py
Lines 690 to 694 in 4154aae
| class TextQuery(BaseQuery): | |
| """ | |
| TextQuery is a query for running a full text search, along with an optional filter expression. | |
| .. code-block:: python |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working