TinySearch v0.6.0
What's Changed
- feat: add optional external browser via Chrome DevTools Protocol by @MarcellM01 in #48
- Feat/scrape link discovery by @MarcellM01 in #49
Full Changelog: v0.5.1...v0.6.0
v0.6.0
Added
- Bounded related-links extraction on HTML scrapes:
scrape_urlsnow returns
up toscrape_max_linkscandidate links (default 8), BM25+embedding-ranked
against the query when one is given, or in page order otherwise. TinySearch
never follows these automatically — the caller selects and re-scrapes. - Optional external browser support via Chrome DevTools Protocol, for
attaching to an already-running Chrome instance instead of launching one.
Fixed
ZeroDivisionErrorin the link BM25 pre-filter when a link-dense page's
candidates (e.g. image-only navigation) all tokenize to empty text/context.- Dockerfile now runs
apt-get upgradeso base-image CVEs get picked up.