Skip to content
Open
Show file tree
Hide file tree
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 @@ -62,6 +62,7 @@ template: |
- Concise keyword descriptions

4. **Detailed Description** (H2): One H3 subsection for each file/subdirectory
- **H3 title MUST be the exact file or directory name only, with no additional description**
- Use the file summaries or subdirectory summaries provided above as description content

Total length: 400-800 words
Expand Down
2 changes: 1 addition & 1 deletion openviking/storage/queuefs/semantic_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ def _parse_overview_md(self, overview_content: str) -> Dict[str, str]:

file_name = header_match.group(1).strip()
parts = file_name.split()
if len(parts) >= 2 and parts[0] == parts[1]:
if len(parts) >= 2 and parts[1].startswith(parts[0]):
file_name = parts[0]

current_file = file_name
Expand Down
Loading