Skip to content

Commit 80d0865

Browse files
committed
Fixed build errors
1 parent b04bf6e commit 80d0865

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/openmemory-js/src/core/memory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class Memory {
3333

3434
// hsg.ts add_hsg_memory returns { id, ... } or similar?
3535
// Let's check hsg.ts exports. It's likely async and returns object.
36-
const res = await add_hsg_memory(content, tags_str, meta, uid);
36+
const res = await add_hsg_memory(content, tags_str, meta, uid ?? undefined);
3737
return res;
3838
}
3939

packages/openmemory-js/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
export * from "./core/memory";
33
export * from "./server/index";
44
export * from "./ops/ingest";
5-
export * from "./ai/adapter";
5+
// export * from "./ai/adapter"; // removed - file doesn't exist

packages/openmemory-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = ["hatchling"]
33
build-backend = "hatchling.build"
44

55
[project]
6-
name = "openmemory"
6+
name = "openmemory-py"
77
version = "1.3.0"
88
description = "OpenMemory Python SDK"
99
dependencies = [

0 commit comments

Comments
 (0)