mirror of
https://github.com/lancedb/lancedb.git
synced 2026-01-04 02:42:57 +00:00
Compare commits
3 Commits
ayush/pyar
...
lu/python-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc0814767b | ||
|
|
8960a8e535 | ||
|
|
a8568ddc72 |
12
Cargo.toml
12
Cargo.toml
@@ -20,13 +20,11 @@ keywords = ["lancedb", "lance", "database", "vector", "search"]
|
|||||||
categories = ["database-implementations"]
|
categories = ["database-implementations"]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
lance = { "version" = "=0.12.2", "features" = [
|
lance = { "version" = "=0.13.0", "features" = ["dynamodb"] }
|
||||||
"dynamodb",
|
lance-index = { "version" = "=0.13.0" }
|
||||||
], git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" }
|
lance-linalg = { "version" = "=0.13.0" }
|
||||||
lance-index = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" }
|
lance-testing = { "version" = "=0.13.0" }
|
||||||
lance-linalg = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" }
|
lance-datafusion = { "version" = "=0.13.0" }
|
||||||
lance-testing = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" }
|
|
||||||
lance-datafusion = { "version" = "=0.12.2", git = "https://github.com/lancedb/lance.git", tag = "v0.12.2-beta.2" }
|
|
||||||
# Note that this one does not include pyarrow
|
# Note that this one does not include pyarrow
|
||||||
arrow = { version = "51.0", optional = false }
|
arrow = { version = "51.0", optional = false }
|
||||||
arrow-array = "51.0"
|
arrow-array = "51.0"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "0.8.2"
|
current_version = "0.9.0"
|
||||||
parse = """(?x)
|
parse = """(?x)
|
||||||
(?P<major>0|[1-9]\\d*)\\.
|
(?P<major>0|[1-9]\\d*)\\.
|
||||||
(?P<minor>0|[1-9]\\d*)\\.
|
(?P<minor>0|[1-9]\\d*)\\.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lancedb-python"
|
name = "lancedb-python"
|
||||||
version = "0.8.2"
|
version = "0.9.0"
|
||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
description = "Python bindings for LanceDB"
|
description = "Python bindings for LanceDB"
|
||||||
license.workspace = true
|
license.workspace = true
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ name = "lancedb"
|
|||||||
# version in Cargo.toml
|
# version in Cargo.toml
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deprecation",
|
"deprecation",
|
||||||
"pylance==0.12.2-beta.2",
|
"pylance==0.13.0",
|
||||||
"ratelimiter~=1.0",
|
"ratelimiter~=1.0",
|
||||||
"requests>=2.31.0",
|
"requests>=2.31.0",
|
||||||
"retry>=0.9.2",
|
"retry>=0.9.2",
|
||||||
|
|||||||
@@ -119,9 +119,7 @@ class Reranker(ABC):
|
|||||||
fts_results : pa.Table
|
fts_results : pa.Table
|
||||||
The results from the FTS search
|
The results from the FTS search
|
||||||
"""
|
"""
|
||||||
combined = pa.concat_tables(
|
combined = pa.concat_tables([vector_results, fts_results], promote=True)
|
||||||
[vector_results, fts_results], promote_options="default"
|
|
||||||
)
|
|
||||||
row_id = combined.column("_rowid")
|
row_id = combined.column("_rowid")
|
||||||
|
|
||||||
# deduplicate
|
# deduplicate
|
||||||
|
|||||||
Reference in New Issue
Block a user