Skip to content

Commit 6d379fa

Browse files
authored
Merge branch 'dev' into feat/fix-memos-retrieval
2 parents 5663e4c + 6477d6e commit 6d379fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memos/mem_os/product.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def _format_mem_block(memories_all, max_items: int = 20, max_chars_each: int = 3
7878
if len(txt) > max_chars_each:
7979
txt = txt[: max_chars_each - 1] + "…"
8080
mid = mid or f"mem_{idx}"
81-
lines.append(f"{idx}:{mid} :: [{tag}] {txt}")
81+
lines.append(f"[{idx}:{mid}] :: [{tag}] {txt}")
8282
return "\n".join(lines)
8383

8484

0 commit comments

Comments
 (0)