mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-31 03:41:51 +00:00
Bootstrap LanceDB into plugin runtime state on first use for packaged/global installs, keep @lancedb/lancedb plugin-local, and add regression coverage for bundled, cached, retry, and Nix fail-fast runtime paths. Co-authored-by: Val Alexander <68980965+BunsDev@users.noreply.github.com>
7 lines
325 B
TypeScript
7 lines
325 B
TypeScript
// Narrow plugin-sdk surface for the bundled memory-lancedb plugin.
|
|
// Keep this list additive and scoped to symbols used under extensions/memory-lancedb.
|
|
|
|
export { definePluginEntry } from "./plugin-entry.js";
|
|
export { resolveStateDir } from "./state-paths.js";
|
|
export type { OpenClawPluginApi } from "../plugins/types.js";
|