latticesql 3.3.0 → 3.3.2
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 +10 -0
- package/dist/cli.js +59832 -58626
- package/dist/index.cjs +62059 -60802
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +61817 -60562
- package/docs/assistant.md +29 -0
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -2314,6 +2314,16 @@ the library API is unchanged and fully backwards-compatible.
|
|
|
2314
2314
|
**added, enriched, and linked** automatically, **auto-creating the junction table
|
|
2315
2315
|
when none exists** (and a new object when a source fits nothing). All audited and
|
|
2316
2316
|
revertible via the version history.
|
|
2317
|
+
- **Ask the assistant to read a link (`ingest_url`).** Paste or name a URL and say
|
|
2318
|
+
"read / summarize / save this" — the assistant fetches the page, saves it as a
|
|
2319
|
+
`files` web reference, and summarizes it. It fetches **only** URLs you wrote
|
|
2320
|
+
yourself (never one found inside a file or a row), guards the fetch with an SSRF
|
|
2321
|
+
check + an on/off + allow/block-list policy + a per-turn budget + a per-host
|
|
2322
|
+
throttle, and treats the fetched page as **untrusted data** (injection-resistant
|
|
2323
|
+
framing wherever the text is read). SPA pages render with headless Chromium when
|
|
2324
|
+
the optional `playwright` dependency is installed (graceful static fallback
|
|
2325
|
+
otherwise). Tunable via the `LATTICE_URL_*` env vars — see
|
|
2326
|
+
[`.env.example`](.env.example).
|
|
2317
2327
|
- **Inference Aggressiveness** slider tunes how much the assistant extrapolates
|
|
2318
2328
|
(temperature + link liberality + auto-junction/auto-create gating).
|
|
2319
2329
|
- **Context-aware.** The chat knows the record you're viewing, so "delete this
|