latticesql 3.2.1 → 3.3.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.
- package/README.md +12 -0
- package/dist/cli.js +61555 -58372
- package/dist/index.cjs +47689 -27945
- package/dist/index.d.cts +168 -6
- package/dist/index.d.ts +168 -6
- package/dist/index.js +47451 -27708
- package/docs/assistant.md +78 -11
- package/docs/cloud.md +85 -10
- package/docs/collaboration.md +5 -1
- package/docs/security.md +323 -0
- package/docs/workspaces.md +13 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -90,6 +90,8 @@ To use the Postgres backend (for Supabase, Neon, RDS, or any other Postgres-comp
|
|
|
90
90
|
npm install latticesql pg
|
|
91
91
|
```
|
|
92
92
|
|
|
93
|
+
> Deploying Lattice Cloud on managed Postgres (AWS RDS / RDS Proxy, Cloud SQL, Neon)? See the [managed-Postgres deployment notes](docs/cloud.md#deploying-on-managed-postgres-aws-rds--rds-proxy) — in particular, point the realtime `LISTEN` connection at a session-mode / direct endpoint, not a transaction-mode proxy.
|
|
94
|
+
|
|
93
95
|
Then pass a connection string instead of a file path:
|
|
94
96
|
|
|
95
97
|
```ts
|
|
@@ -2312,6 +2314,16 @@ the library API is unchanged and fully backwards-compatible.
|
|
|
2312
2314
|
**added, enriched, and linked** automatically, **auto-creating the junction table
|
|
2313
2315
|
when none exists** (and a new object when a source fits nothing). All audited and
|
|
2314
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).
|
|
2315
2327
|
- **Inference Aggressiveness** slider tunes how much the assistant extrapolates
|
|
2316
2328
|
(temperature + link liberality + auto-junction/auto-create gating).
|
|
2317
2329
|
- **Context-aware.** The chat knows the record you're viewing, so "delete this
|