mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-26 08:31:55 +00:00
refactor(memory): invert memory host sdk dependency
This commit is contained in:
@@ -363,15 +363,15 @@ describe("plugin-sdk subpath exports", () => {
|
||||
]);
|
||||
expectSourceContains(
|
||||
"memory-core-host-runtime-core",
|
||||
'export * from "../../packages/memory-host-sdk/src/runtime-core.js";',
|
||||
'export * from "../memory-host-sdk/runtime-core.js";',
|
||||
);
|
||||
expectSourceContains(
|
||||
"memory-core-host-runtime-cli",
|
||||
'export * from "../../packages/memory-host-sdk/src/runtime-cli.js";',
|
||||
'export * from "../memory-host-sdk/runtime-cli.js";',
|
||||
);
|
||||
expectSourceContains(
|
||||
"memory-core-host-runtime-files",
|
||||
'export * from "../../packages/memory-host-sdk/src/runtime-files.js";',
|
||||
'export * from "../memory-host-sdk/runtime-files.js";',
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { EmbeddingInput } from "../../packages/memory-host-sdk/src/host/embedding-inputs.js";
|
||||
import type { OpenClawConfig } from "../config/config.js";
|
||||
import type { SecretInput } from "../config/types.secrets.js";
|
||||
import type { EmbeddingInput } from "../memory-host-sdk/engine-embeddings.js";
|
||||
|
||||
export type MemoryEmbeddingBatchChunk = {
|
||||
text: string;
|
||||
|
||||
Reference in New Issue
Block a user