diff --git a/python/python/lancedb/query.py b/python/python/lancedb/query.py index b796fc40c..0a9473a0a 100644 --- a/python/python/lancedb/query.py +++ b/python/python/lancedb/query.py @@ -1643,7 +1643,7 @@ class LanceHybridQueryBuilder(LanceQueryBuilder): def _validate_query(self, query, vector=None, text=None): if query is not None and (vector is not None or text is not None): raise ValueError( - "You can either provide a string query in search() method" + "You can either provide a string query in search() method " "or set `vector()` and `text()` explicitly for hybrid search." "But not both." )