openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
25 lines (24 loc) • 803 B
JavaScript
import { t as resolveMemoryBackendConfig } from "./backend-config-Bk4OTHnB.js";
import "./memory-core-host-runtime-files-BEOYVaYk.js";
import { n as closeMemorySearchManager, r as getMemorySearchManager, t as closeAllMemorySearchManagers } from "./memory-BOKSi9MZ.js";
//#region extensions/memory-core/src/runtime-provider.ts
const memoryRuntime = {
async getMemorySearchManager(params) {
const { manager, error } = await getMemorySearchManager(params);
return {
manager,
error
};
},
resolveMemoryBackendConfig(params) {
return resolveMemoryBackendConfig(params);
},
async closeAllMemorySearchManagers() {
await closeAllMemorySearchManagers();
},
async closeMemorySearchManager(params) {
await closeMemorySearchManager(params);
}
};
//#endregion
export { memoryRuntime as t };