chore: restore OpenClaw branding

This commit is contained in:
Vignesh Natarajan
2026-02-02 21:10:10 -08:00
committed by Vignesh
parent 9bef525944
commit f72214725d
4 changed files with 38 additions and 38 deletions

View File

@@ -1,4 +1,4 @@
import type { MoltbotConfig } from "../config/config.js";
import type { OpenClawConfig } from "../config/config.js";
import type { ResolvedQmdConfig } from "./backend-config.js";
import type {
MemoryEmbeddingProbeResult,
@@ -17,7 +17,7 @@ export type MemorySearchManagerResult = {
};
export async function getMemorySearchManager(params: {
cfg: MoltbotConfig;
cfg: OpenClawConfig;
agentId: string;
}): Promise<MemorySearchManagerResult> {
const resolved = resolveMemoryBackendConfig(params);