lancedb 0.27.1

LanceDB: A serverless, low-latency vector database for AI applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright The LanceDB Authors

pub mod connection;
pub mod datagen;
pub mod embeddings;

#[derive(Debug)]
pub struct TestCustomError;

impl std::fmt::Display for TestCustomError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "TestCustomError occurred")
    }
}

impl std::error::Error for TestCustomError {}