@tencentdb-agent-memory/memory-tencentdb
Version:
Four-layer local memory system plugin for OpenClaw — auto-captures, structures, and profiles conversational knowledge using local LLM + SQLite vector search (L0→L1→L2→L3 pipeline)
20 lines (17 loc) • 931 B
text/typescript
/**
* TDAI Adapters — barrel re-export for all host adapter implementations.
*
* Each adapter translates a specific host environment's API into
* the host-neutral HostAdapter interface consumed by TdaiCore.
*
* Directory structure:
* adapters/
* ├── openclaw/ — OpenClaw plugin host (in-process, runEmbeddedPiAgent)
* └── standalone/ — Gateway / Hermes sidecar (HTTP, OpenAI-compatible API)
*/
// OpenClaw adapter
export { OpenClawHostAdapter, OpenClawLLMRunner, OpenClawLLMRunnerFactory } from "./openclaw/index.js";
export type { OpenClawHostAdapterOptions, OpenClawLLMRunnerFactoryOptions } from "./openclaw/index.js";
// Standalone adapter
export { StandaloneHostAdapter, StandaloneLLMRunner, StandaloneLLMRunnerFactory } from "./standalone/index.js";
export type { StandaloneHostAdapterOptions, StandaloneLLMConfig, StandaloneLLMRunnerFactoryOptions } from "./standalone/index.js";