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 hidden (Show)

lancedb - Python-v0.2.0 Release: Breaking change

Published by eddyxu about 1 year ago

⚠️ Breaking Change: The score column has been renamed to _distance to more accurately describe the semantics (smaller means closer / better).

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.1.16...python-v0.2.0

lancedb - python-v0.1.16 Lighter install and better pydantic integration

Published by changhiskhan about 1 year ago

LanceDB and Lance both have pandas as an optional dependency to reduce the install size.
The pydantic integration with LanceDB has been improved. Think of it like a light-weight ORM-layer for LanceDB!

import lancedb
from lancedb.pydantic import LanceModel, vector

class TestModel(LanceModel):
    name: str
    vector: vector(2)

# create table using schema generated from the model
db = lancedb.connect("/tmp")
table = db.create_table("test", schema=TestModel.to_arrow_schema())

# add pydantic model instances
table.add([
    TestModel(name="test", vector=[1.0, 2.0])
])

# convert search results to pydantic models
table.search([0., 0.]).limit(1).to_pydantic(TestModel)
[TestModel(name='test', vector=FixedSizeList(dim=2))]

Lance version upgraded from v0.5.8 to v0.5.10

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.19...python-v0.1.16

lancedb - v0.1.19 - Bugfix for EmbeddingFunction

Published by gsilvestrin about 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.18...v0.1.19

lancedb - python-v0.1.15 bug fix for remote client

Published by chebbyChefNEQ about 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.18...python-v0.1.15

lancedb - v0.1.18 Bugfixes and build changes

Published by gsilvestrin about 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.17...v0.1.18

lancedb - v0.1.17 Linux ARM Support

Published by gsilvestrin over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.16...v0.1.17

lancedb - v0.1.16 - Bugfixes and package build changes

Published by gsilvestrin over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.15...v0.1.16

lancedb - python-v0.1.14: fix for S3-compatibility with minio

Published by wjones127 over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.1.13...python-v0.1.14

lancedb - Python 0.1.13: Urgent fix for Pydantic breaking change

Published by eddyxu over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.1.12...python-v0.1.13

lancedb - v0.1.15 Rust and NodeJS: Support AWS endpoints, bug and doc fixes,

Published by eddyxu over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.14...v0.1.15

lancedb - Python v0.1.12 release

Published by eddyxu over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.11-python...python-v0.1.12

lancedb - v0.1.14 - Initial Windows support and bug fixes

Published by gsilvestrin over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.13...v0.1.14

lancedb - v0.1.11-python Bug fix and document improvements

Published by eddyxu over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.10-python...v0.1.11-python

lancedb - v0.1.13

Published by gsilvestrin over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.12...v0.1.13

lancedb - v0.1.10 Python release: Create empty database

Published by eddyxu over 1 year ago

What's Changed

Changes in Lance core format

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.9-python...v0.1.10-python

lancedb - v0.1.10 Release

Published by eddyxu over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.9...v0.1.10

lancedb - python-v0.1.9: deletion + drop table

Published by wjones127 over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/python-v0.1.8...python-v0.1.9

lancedb - v0.1.9 release: deletion + drop table

Published by wjones127 over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.8...v0.1.9

lancedb - v0.1.7 Release

Published by gsilvestrin over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lancedb/compare/v0.1.6...v0.1.7

lancedb - v0.1.6 Release

Published by gsilvestrin over 1 year ago

What's Changed

Full Changelog: https://github.com/lancedb/lancedb/compare/0e981e782bfd8d657b4f52e626f16666c9c23404...v0.1.6