-
Notifications
You must be signed in to change notification settings - Fork 3
Search result parsing broken - returns "Raw text (daemon mode)" for most engines #2
Copy link
Copy link
Closed
Description
When the daemon is running, stealth search skips result parsing for all engines and output formats. The search itself succeeds (page loads with results), but the parser falls back to a single "Raw text (daemon mode)" entry.
Reproduce
stealth daemon start
stealth search google "test query" -f json -n 5
stealth search bing "test query" -f json -n 5Actual (daemon):
- Google:
{"results": [{"title": "Raw text (daemon mode)", "content": ""}]} - Bing:
{"results": [{"title": "Raw text (daemon mode)", "content": "<entire raw page text>"}]} - All engines return a single result with
"title": "Raw text (daemon mode)"instead of parsed individual results
Without daemon, both Bing and Google parses correctly:
stealth daemon stop
stealth search bing "test query" -f json -n 5
# Returns properly parsed results: [{title, url, snippet}, ...]Other formats (-f text, -f snapshot) are also affected - they return raw page dumps instead of extracted results.
Expected
Parsed individual results with title/url/snippet in daemon mode, same as without daemon.
Environment
- Version: 0.6.1
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels