fix: import paths (fetchers→readers), schema field mismatch, RSS detection

Bugs found during fresh pip install testing:
- readers/*.py still referenced agent_eyes.fetchers → fixed to agent_eyes.readers
- reader.py passed 'author'/'metadata' to UnifiedContent which doesn't have those → use 'extra' field
- RSS URL detection missed domains containing 'rss' (e.g. hnrss.org)
This commit is contained in:
Panniantong
2026-02-24 05:13:52 +01:00
parent 8eab038cb9
commit d891af5b7d
5 changed files with 11 additions and 13 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ import tempfile
from loguru import logger
from typing import Dict, Any
from agent_eyes.fetchers.jina import fetch_via_jina
from agent_eyes.readers.jina import fetch_via_jina
def _extract_video_id(url: str) -> str: