Docs/CI: fix broken image paths and ruff lint\n\n- Move screenshot to docs/videos and update references\n- Remove obsolete rag-query-results image\n- Rename variable to satisfy ruff

This commit is contained in:
aakash
2025-10-15 04:15:44 -07:00
parent 151b24a456
commit 0a7a283dda
3 changed files with 5 additions and 5 deletions

View File

@@ -120,9 +120,9 @@ async def fetch(
print("=" * 60)
q_terms = [t.strip().lower() for t in query.split() if t.strip()]
lines = [
l
for l in (text_blob.splitlines() if text_blob else [])
if l and not l.startswith("MsgID,")
line
for line in (text_blob.splitlines() if text_blob else [])
if line and not line.startswith("MsgID,")
]
# Score lines by count of query terms present
scored = []