Skip to content
This repository was archived by the owner on Jan 2, 2026. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,10 @@ def _parse_memory_item(
end = chunk.line_range[0] + int(source_lines[1])
source_range = (start, end)
except (ValueError, TypeError):
pass
# Invalid source_lines format - skip source range extraction
# ValueError: LLM returned non-integer values
# TypeError: source_lines is None or incompatible type
source_range = None

# Parse tags
tags_raw = item.get("tags", [])
Expand Down