@runbooks/search 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  BM25, the query semantics, and `/v1/search` as a function.
4
4
 
5
- **Tasks:** [M-03](../../tasks/v1/M-03-search-api.md) · **Normative:** RUNBOOK.md §12, §17, §10.1
5
+ **Normative:** RUNBOOK.md §12, §17, §10.1
6
6
 
7
7
  Search runs client-side over the prebuilt index until size forces an endpoint, and
8
8
  `handleSearch` **is** that endpoint: a URL and the published artifact in, a response out,
@@ -13,6 +13,5 @@ Two rules the API cannot bend. `available` means **every** capability, not any:
13
13
  reading it the other way is handed procedures it can start and cannot finish. And
14
14
  `trust_min` defaults to T2, so reaching below it is something a caller did on purpose.
15
15
 
16
- The vector half of §17's hybrid is an injected function with no default
17
- ([why](../../docs/decisions/M03-vector-half.md)): BM25 finds fewer things, and finding
18
- fewer things is recoverable in a way that inventing a ranking is not.
16
+ The vector half of §17's hybrid is an injected function with no default: BM25 finds fewer
17
+ things, and finding fewer things is recoverable in a way that inventing a ranking is not.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runbooks/search",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Search over the prebuilt index: symptom, facet and capability.",