Skip to main content

fabricatio-lancedb

MIT Python Versions PyPI Version PyPI Downloads PyPI Downloads Bindings: PyO3 Build Tool: uv + maturin

LanceDB vector store backend for Fabricatio RAG. Provides async Rust-backed table operations — creation, document insertion, vector similarity search, and index rebuilding — plus Python-side RAG capability mixins and document models.

Architecture

The package has two layers:

Layer Language Key Types Purpose
Rust (PyO3) Rust VectorStoreService, VectorStoreTable, StoreDocument, SearchedDocument High-performance LanceDB table ops with async execution
Python Python LancedbRAG, LancedbDocumentModel, LancedbConfig RAG capability, document models, configuration

The Rust layer manages LanceDB connections and tables. The Python layer implements the fabricatio-rag RAG interface on top of those primitives: batching embeddings, inserting documents, and searching by vector.

Installation

pip install fabricatio[lancedb]
# or
uv pip install fabricatio[lancedb]

For all Fabricatio extras:

pip install fabricatio[full]

Configuration

All options below are read through the fabricatio configuration chain (see the Configuration Guide at ../../docs/source/configuration.rst). Set them under the [ext.lancedb] table in fabricatio.toml, equivalently under [tool.fabricatio.ext.lancedb] in pyproject.toml, or via FABRICATIO_EXT__LANCEDB__<FIELD_UPPER> environment variables.

# fabricatio.toml
[ext.lancedb]
database_uri = "./lance.db"
default_table_name = "default"
Option Type Default Description
database_uri str "./lance.db" LanceDB connection URI (local path or S3 s3://bucket/path)
default_table_name str "default" Table name used when none is specified

Access at runtime: from fabricatio_lancedb.config import lancedb_config.

Usage

Low-level Rust API

Direct table operations with async Rust execution:

import asyncio
from fabricatio_lancedb.rust import VectorStoreService, VectorStoreTable, StoreDocument

async def main():
    # Connect to LanceDB
    service = await VectorStoreService.connect("./lance.db")

    # Create a table for 1536-dim embeddings (OpenAI text-embedding-3-small)
    table = await service.create_table("my_table", ndim=1536)

    # Add documents
    docs = [
        StoreDocument(
            content="LanceDB is a fast, open-source vector database.",
            vector=[0.1] * 1536,
        ),
        StoreDocument.with_metadata(
            content="Fabricatio is an LLM application framework.",
            vector=[0.2] * 1536,
            metadata={"source": "docs", "version": "1.0"},
        ),
    ]
    ids = await table.add_documents(docs)
    print(f"Inserted: {ids}")

    # Search by embedding
    results = await table.search_document(embedding=[0.15] * 1536, limit=5)
    for r in results:
        print(f"{r.id}: {r.content[:60]}...")
        print(f"  metadata: {r.access_metadata()}")

    # Rebuild the index after bulk inserts with rebuild_index=False
    await table.rebuild_index()

asyncio.run(main())

RAG capability (high-level)

Integrate with Fabricatio's RAG system using the LancedbRAG mixin:

from fabricatio_lancedb.capabilities.lancedb import LancedbRAG, LancedbAddRAGConfig, LancedbFetchRAGConfig
from fabricatio_lancedb.models.lancedb import LancedbDocumentModel

class MyDoc(LancedbDocumentModel):
    """Custom document with additional fields."""
    title: str = ""

class MyRAGRole(SomeBaseRole, LancedbRAG[MyDoc, LancedbAddRAGConfig, LancedbFetchRAGConfig[MyDoc]]):
    pass

async def run():
    role = MyRAGRole(name="my-rag-role")
    # Add a document — handles embedding batching internally
    await role.add_document(
        MyDoc(content="Semantic search with LanceDB and Fabricatio.", title="Intro"),
        config=LancedbAddRAGConfig(table_name="docs", embedding_batch_size=20),
    )
    # Fetch relevant documents
    results = await role.afetch_document(
        "how does semantic search work",
        config=LancedbFetchRAGConfig(document_model=MyDoc, limit=10),
    )
    for doc in results:
        print(f"[{doc.title}] {doc.content}")

Cached service helper

Reuse connections across calls:

from fabricatio_lancedb.inited_service import get_service

service = await get_service("s3://my-bucket/lancedb")
table = await service.open_table("production_docs")

API Reference

Rust layer (fabricatio_lancedb.rust)

VectorStoreService

Method Signature Returns Description
connect (uri: str) -> Awaitable[Self] VectorStoreService Static — connect to a LanceDB instance
create_table (table_name: str, ndim: int) -> Awaitable[VectorStoreTable] VectorStoreTable Create a new table with the given vector dimension
open_table (table_name: str) -> Awaitable[VectorStoreTable] VectorStoreTable Open an existing table
create_or_open_table (table_name: str, ndim: int) -> Awaitable[VectorStoreTable] VectorStoreTable Create if absent, otherwise open

VectorStoreTable

Method Signature Returns Description
add_documents (documents: list[StoreDocument], rebuild_index: bool = True) -> Awaitable[list[str]] Document IDs Insert documents; set rebuild_index=False for bulk inserts
search_document (embedding: list[float], limit: int, dedup_threshold: float | None = None) -> Awaitable[list[SearchedDocument]] Search results Nearest-neighbor vector search; with dedup_threshold, near-duplicates (cosine similarity ≥ threshold vs. an already-kept result) are dropped and replaced by deeper candidates
rebuild_index () -> Awaitable[None] None Rebuild the vector index (no-op if <256 rows)

StoreDocument

Field Type Description
content str Document text content
vector list[float] Dense embedding vector
metadata str | None Optional JSON-serialized metadata

Static constructor StoreDocument.with_metadata(content, vector, metadata: dict) serializes the metadata dict to JSON.

SearchedDocument

Property Type Description
id str UUID document identifier
content str Matched document text
timestamp int Microsecond-precision timestamp
metadata str | None Raw JSON metadata string

Method access_metadata() -> dict parses the JSON metadata into a Python dict.

Python layer

LancedbRAG

Extends RAG from fabricatio-rag with LanceDB storage.

Method Description
add_document(data, config) Vectorize and insert one or more documents
afetch_document(query, config) Vectorize a query string and return matching documents
rebuild_index(table_name?) Rebuild the vector index on a table

LancedbAddRAGConfig

Dataclass config for add_document:

Field Default Description
table_name lancedb_config.default_table_name Target table
embedding_batch_size 10 Documents per embedding batch
embedding_parallel_size 10 Max concurrent embedding calls
rebuild_index False Rebuild index after insertion

LancedbFetchRAGConfig

Dataclass config for afetch_document:

Field Default Description
table_name lancedb_config.default_table_name Source table
document_model None (required) Document model class for deserialization
limit 15 Max results returned
dedup_cos_threshold 0.95 Cosine similarity at which a candidate is treated as a duplicate of an already-selected result; None disables deduplication

LancedbDocumentModel

Extends StoredDocumentModel and SearchedDocumentModel. Fields: content (str), metadata (dict | None).

Method Description
prepare_insertion(vector) -> StoreDocument Build a Rust StoreDocument ready for insertion
from_raw(raw: SearchedDocument) -> Self Deserialize a Rust SearchedDocument
with_text_chunk(chunk: str) -> Self Create from a plain text chunk

Schema

Each LanceDB table uses this Arrow schema:

Column Type Nullable Description
item Utf8 no Primary key (UUID v7)
timestamp Time64(us) no Insertion timestamp
vector FixedSizeList(Float32, ndim) no Embedding vector
content Utf8 no Document text
metadata Utf8 yes JSON-serialized metadata

Dependencies

  • fabricatio-core — core interfaces and configuration
  • fabricatio-rag — base RAG abstractions (RAG, document models)
  • more-itertools — chunked iteration for batch processing
  • async-lru — async LRU caching

Rust dependencies (via PyO3): lancedb, arrow, pyo3, tokio.

License

This project is licensed under the MIT License — see LICENSE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fabricatio_lancedb-0.3.4-cp314-cp314-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.14Windows x86-64

fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_x86_64.whl (62.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.38+ x86-64

fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.38+ ARM64

fabricatio_lancedb-0.3.4-cp314-cp314-macosx_11_0_arm64.whl (53.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fabricatio_lancedb-0.3.4-cp313-cp313-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.13Windows x86-64

fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_x86_64.whl (62.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.38+ x86-64

fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.38+ ARM64

fabricatio_lancedb-0.3.4-cp313-cp313-macosx_11_0_arm64.whl (53.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fabricatio_lancedb-0.3.4-cp312-cp312-win_amd64.whl (58.4 MB view details)

Uploaded CPython 3.12Windows x86-64

fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_x86_64.whl (62.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.38+ x86-64

fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_aarch64.whl (54.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.38+ ARM64

fabricatio_lancedb-0.3.4-cp312-cp312-macosx_11_0_arm64.whl (53.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

File details

Details for the file fabricatio_lancedb-0.3.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 58.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0c4ae13f158ab3b11515693af8299a9e1176e3e22a5fd4f708f3c121e952cd9
MD5 838a1469cff2b07621860848593efb82
BLAKE2b-256 37ebb3bef387193ebda5373fc51cb76cf469921718be1b500a7a69513e24479b

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_x86_64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_x86_64.whl
  • Upload date:
  • Size: 62.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.38+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_x86_64.whl
Algorithm Hash digest
SHA256 dfc2c027f46c38ef8f45bca34c88839bcd6ca16c112a69cd0bab24ef36eca30e
MD5 aa95d3aedbd0ca06905fe9c64fdb0ea6
BLAKE2b-256 8d6ae6d2de0b77e76f358ff2c93a6e074edea153e3bb8d605834019f6617163a

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_aarch64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_aarch64.whl
  • Upload date:
  • Size: 54.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.38+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp314-cp314-manylinux_2_38_aarch64.whl
Algorithm Hash digest
SHA256 57555023fe8bb5b9298f6ed2078ecfefe588c719240a6bf50d7fdb46bd4002cc
MD5 39396337805d4140bcfae9f3cdabd9f9
BLAKE2b-256 0a5342f5e04a1a5c9b7fb047e395806ba44298d3f515963f14853c3b2e4329f4

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 53.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b79cd23bb048ea515fd9aabb6e4173d5f852f33f0bedfa5b490491c63b5f4042
MD5 5cfe104add7c12c1d57dff1063a8d96d
BLAKE2b-256 d6b1184f23a21f7507f14e238a8f6833a65c711b2f71c4854abb5a99937305d8

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 58.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 edfda8d1270a9b23eca7695f7efeed2a0d328d19dd07995017bcfdfc3bbff9c5
MD5 50c7619d7a4066cce816709f78ef1b9e
BLAKE2b-256 1758aa7d1fe5b7ef50591a9025e3a156ed22ea80001f9c00f7b2fb6476a0ad4f

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_x86_64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_x86_64.whl
  • Upload date:
  • Size: 62.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.38+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_x86_64.whl
Algorithm Hash digest
SHA256 88e88ce9c0ae7575ab869a43969a2aec8c647a67087b46280aead1dae2b518bc
MD5 7bcf4b6fe8ca9d961b4d1e81ee8fd1d9
BLAKE2b-256 315b36ade4f6276ff25e3c1e5e277d963ec5bf4c47ee07dfa4e87631bd99c6a2

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_aarch64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_aarch64.whl
  • Upload date:
  • Size: 54.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.38+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp313-cp313-manylinux_2_38_aarch64.whl
Algorithm Hash digest
SHA256 3e6e094738f449e80be343089a1516008dc657d82bb831376fb68743f25e9cfe
MD5 157fde8b00b264d3d1287ce9954d76c1
BLAKE2b-256 a602f2b1848706cc1d3ca823f4dcc99066e74114d115d2c9c8be4491841343a7

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 53.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 871b6cdf1ca8a142c2f85b16ad935e599f4d0da7d738fb6b01a6a11565bc47de
MD5 bbed2ad875007fb7e07a0ac6454966fb
BLAKE2b-256 1990e26c365a26e7c2bcab21ea8e7a549e0d2803af3dab4f9440f7dfebd29c57

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 58.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ecbb5a2071ac26ffecc2301460988686a843d61cc89e3bbc71a38f1b5d37940b
MD5 b77751189783419242ed1c9423809f03
BLAKE2b-256 d3e8dc9be5e635a4191bb05744ab8f7be6c2f575f13fcf8c4ca5c5bac1ab3281

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_x86_64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_x86_64.whl
  • Upload date:
  • Size: 62.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.38+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_x86_64.whl
Algorithm Hash digest
SHA256 7542ccbd6a7cf39d983c3140f5e69e86e19d2217c431a092df96a87558a54eb5
MD5 2c53a2caf0e3ce8c9f584e63800a6d18
BLAKE2b-256 607acb7ad68b8415110f996053b7c83643ab999d7b7e5da3bc6d9485896666e5

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_aarch64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_aarch64.whl
  • Upload date:
  • Size: 54.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.38+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp312-cp312-manylinux_2_38_aarch64.whl
Algorithm Hash digest
SHA256 2bb369f861f7b2d53de31a1410b38e7604a1f1005dea3e6bca401fa24064f718
MD5 db24fe99a22aa1cd09740a792a9c411b
BLAKE2b-256 9cad9bf8dc53393df0cca116889d58b3c1d9496ab309b46ddec157d9c2923d26

See more details on using hashes here.

File details

Details for the file fabricatio_lancedb-0.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: fabricatio_lancedb-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 53.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for fabricatio_lancedb-0.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21d3c7720d25a969e96b6feff4ad0dfea92f5060b0788028ec81b0da78603390
MD5 0688e69d6e95598ac32e4fd17bd034c3
BLAKE2b-256 6302494c038e338a7e96724268ba3fa5a852080c2a6384e386098d8388f64b0e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.3.4 This release

12 files

0.3.3

12 files

0.3.2

12 files

0.3.0

12 files

0.2.2

12 files

0.2.1

12 files

0.2.0

12 files

0.1.1

12 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page