chattercatcher 0.1.1 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -41,7 +41,6 @@ __export(lancedb_store_exports, {
41
41
  LanceDbVectorStore: () => LanceDbVectorStore,
42
42
  getLanceDbPath: () => getLanceDbPath
43
43
  });
44
- import * as lancedb from "@lancedb/lancedb";
45
44
  import fs5 from "fs/promises";
46
45
  import path8 from "path";
47
46
  function getLanceDbPath(config) {
@@ -92,6 +91,7 @@ var init_lancedb_store = __esm({
92
91
  tableName;
93
92
  static async connect(uri, tableName = DEFAULT_TABLE_NAME) {
94
93
  await fs5.mkdir(uri, { recursive: true });
94
+ const lancedb = await import("@lancedb/lancedb");
95
95
  const connection = await lancedb.connect(uri);
96
96
  return new _LanceDbVectorStore(connection, tableName);
97
97
  }