lancedb

Developer-friendly, serverless vector database for AI applications. Easily add long-term memory to your LLM apps!

APACHE-2.0 License

Downloads
1M
Stars
4.3K
Committers
92

Bot releases are visible (Hide)

lancedb - v0.4.8 Node/Rust, merge insert

Published by westonpace 9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.7...v0.4.8

lancedb - python-v0.5.2 merge insert, hybrid search

Published by westonpace 9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.5.1...python-v0.5.2

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.6...v0.4.7

lancedb - v0.4.6 Rust SDK

Published by eddyxu 9 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.5...v0.4.6

lancedb - v0.4.5

Published by QianZhu 9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.3...v0.4.5

lancedb - v0.4.4

Published by QianZhu 9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.3...v0.4.4

lancedb - python-v0.5.1

Published by QianZhu 9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.5.0...python-v0.5.1

lancedb - python-v0.5.0 Polars integration

Published by changhiskhan 9 months ago

You can now directly ingest Polars dataframes into LanceDB tables and export search results as polars DataFrames.
You can also export LanceDB tables as a polars LazyFrame.

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.4.4...python-v0.5.0

lancedb - v0.4.3 (Node)

Published by wjones127 9 months ago

New features

Other changes

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.2...v0.4.3

lancedb - python-v0.4.4

Published by wjones127 9 months ago

New features

Bug fixes

Other changes

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.4.3...python-v0.4.4

lancedb - v0.4.2 buf fixes

Published by eddyxu 10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.1...v0.4.2

lancedb - python-v0.4.3: bug fixes

Published by eddyxu 10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.4.2...python-v0.4.3

lancedb - python-v0.4.2 Post-filtering for FTS index and other improvements

Published by changhiskhan 10 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.4.1...python-v0.4.2

lancedb - python-v0.4.1: Bug fixes and scalar indices

Published by wjones127 10 months ago

New features

Bug fixes

Other changes

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.4.0...python-v0.4.1

lancedb - v0.4.1 (Node): Upstream bug fixes and scalar indices

Published by wjones127 10 months ago

New features

Bug fixes

Other changes

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.4.0...v0.4.1

lancedb - v0.4.0 Node and Rust release

Published by eddyxu 10 months ago

Summary

  • Performance Improvement
  • Scalar index
  • Stats-based predicate pushdown
  • Cosine distance fix

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.3.0...v0.4.0

lancedb - python-v0.4.0

Published by eddyxu 10 months ago

Summary

  • Performance improvement and bug fixes
  • Scalar index and stats-based predicate pushdown

Breaking Changes

  • New cosine distance calculation for Product Quantization.
  • Bump pyarrow to 12.0+

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.3.0...python-v0.4.0

lancedb - v0.3.6 (Python)

Published by albertlockett 10 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.3.5...python-v0.3.6

lancedb - v0.3.11 (Node): Update support for LanceDB Cloud

Published by albertlockett 10 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.3.10...v0.3.11

lancedb - v0.3.10 (Node): Scan and update queries

Published by wjones127 10 months ago

In Node, you can now scan tables with a filter:

await table.filter("category = 'reciepts'").execute()

In addition, in OSS you can also update existing rows with

await tbl.update({
  filter: "id = 2",
  updates: { vector: [2, 2], name: "Michael" },
})

(Update support is coming soon to LanceDB Cloud.)

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.3.9...v0.3.10