latticesql 3.1.0 → 3.2.0
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 +4 -0
- package/dist/cli.js +1996 -878
- package/dist/index.cjs +352 -187
- package/dist/index.d.cts +15 -20
- package/dist/index.d.ts +15 -20
- package/dist/index.js +352 -187
- package/docs/api-reference.md +1370 -0
- package/docs/architecture.md +331 -0
- package/docs/assistant.md +138 -0
- package/docs/cli.md +515 -0
- package/docs/cloud.md +675 -0
- package/docs/collaboration.md +85 -0
- package/docs/configuration.md +416 -0
- package/docs/entity-context.md +510 -0
- package/docs/examples/agent-system.md +313 -0
- package/docs/examples/cms.md +366 -0
- package/docs/examples/ticket-tracker.md +313 -0
- package/docs/migrations.md +272 -0
- package/docs/templates.md +338 -0
- package/docs/workspaces.md +81 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2314,6 +2314,10 @@ the library API is unchanged and fully backwards-compatible.
|
|
|
2314
2314
|
revertible via the version history.
|
|
2315
2315
|
- **Inference Aggressiveness** slider tunes how much the assistant extrapolates
|
|
2316
2316
|
(temperature + link liberality + auto-junction/auto-create gating).
|
|
2317
|
+
- **Context-aware.** The chat knows the record you're viewing, so "delete this
|
|
2318
|
+
file" / "summarize this" resolve to it; and it can answer questions about Lattice
|
|
2319
|
+
itself (e.g. "what is private mode?") via a `lattice_help` tool that searches
|
|
2320
|
+
these docs.
|
|
2317
2321
|
- Runs on local SQLite and on any `postgres://` connection, including a Lattice
|
|
2318
2322
|
cloud — where it connects as your own scoped role, so its reads and writes are
|
|
2319
2323
|
RLS-confined to the rows you may see, exactly like the rest of the GUI.
|