@longtable/cli 0.1.29 → 0.1.31
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.
- package/README.md +7 -0
- package/dist/cli.js +615 -491
- package/dist/project-session.d.ts +20 -0
- package/dist/project-session.js +55 -7
- package/dist/prompt-renderer.d.ts +11 -0
- package/dist/prompt-renderer.js +130 -0
- package/dist/search/index.d.ts +1 -0
- package/dist/search/index.js +1 -0
- package/dist/search/publisher-access.d.ts +23 -0
- package/dist/search/publisher-access.js +577 -0
- package/dist/search/rank.js +30 -2
- package/dist/search/run.js +9 -1
- package/dist/search/sources.js +29 -2
- package/dist/search/types.d.ts +64 -0
- package/dist/search/types.js +6 -0
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -200,11 +200,18 @@ deduplicates, ranks, and labels results as evidence cards. Some sources work
|
|
|
200
200
|
without keys, some require a contact email, and some need API keys for reliable
|
|
201
201
|
use.
|
|
202
202
|
|
|
203
|
+
Publisher access is configured separately through environment variables and
|
|
204
|
+
DOI probes. `longtable search setup` checks Elsevier, Springer Nature, Wiley,
|
|
205
|
+
and Taylor & Francis credentials or TDM tokens without storing secrets.
|
|
206
|
+
|
|
203
207
|
Citation support should be checked explicitly. A reference can be useful as
|
|
204
208
|
background while still failing to support the specific claim attached to it.
|
|
205
209
|
|
|
206
210
|
```bash
|
|
211
|
+
longtable search setup
|
|
212
|
+
longtable search probe --doi "10.1016/example" --publisher elsevier
|
|
207
213
|
longtable search --query "trust calibration measurement" --intent measurement
|
|
214
|
+
longtable search --query "trust calibration measurement" --publisher-access --json
|
|
208
215
|
longtable search --query "trust calibration citation support" --intent citation --record
|
|
209
216
|
```
|
|
210
217
|
|