chore: upgrade to lance 0.10.1 (#1034)

upgrade to lance 0.10.1 and update doc string to reflect dynamic
projection options
This commit is contained in:
Rob Meng
2024-02-28 11:06:46 -05:00
committed by Weston Pace
parent 0a8e258247
commit f3de3d990d
9 changed files with 97 additions and 22 deletions

View File

@@ -87,7 +87,7 @@ def test_query_builder(table):
rs = (
LanceVectorQueryBuilder(table, [0, 0], "vector")
.limit(1)
.select(["id"])
.select(["id", "vector"])
.to_list()
)
assert rs[0]["id"] == 1