@f-inverse/jammi-client 0.24.0 → 0.26.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 +2 -2
- package/dist/gen/jammi/v1/audit_pb.d.ts +1 -1
- package/dist/gen/jammi/v1/audit_pb.js +1 -1
- package/dist/gen/jammi/v1/catalog_pb.d.ts +1148 -0
- package/dist/gen/jammi/v1/catalog_pb.d.ts.map +1 -0
- package/dist/gen/jammi/v1/catalog_pb.js +320 -0
- package/dist/gen/jammi/v1/catalog_pb.js.map +1 -0
- package/dist/gen/jammi/v1/embedding_pb.d.ts +10 -265
- package/dist/gen/jammi/v1/embedding_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/embedding_pb.js +18 -111
- package/dist/gen/jammi/v1/embedding_pb.js.map +1 -1
- package/dist/gen/jammi/v1/error_pb.d.ts +2 -2
- package/dist/gen/jammi/v1/eval_pb.d.ts +287 -1
- package/dist/gen/jammi/v1/eval_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/eval_pb.js +82 -25
- package/dist/gen/jammi/v1/eval_pb.js.map +1 -1
- package/dist/gen/jammi/v1/inference_pb.d.ts +272 -1
- package/dist/gen/jammi/v1/inference_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/inference_pb.js +61 -2
- package/dist/gen/jammi/v1/inference_pb.js.map +1 -1
- package/dist/gen/jammi/v1/pipeline_pb.d.ts +491 -0
- package/dist/gen/jammi/v1/pipeline_pb.d.ts.map +1 -0
- package/dist/gen/jammi/v1/pipeline_pb.js +154 -0
- package/dist/gen/jammi/v1/pipeline_pb.js.map +1 -0
- package/dist/gen/jammi/v1/training_pb.d.ts +1217 -0
- package/dist/gen/jammi/v1/training_pb.d.ts.map +1 -0
- package/dist/gen/jammi/v1/training_pb.js +388 -0
- package/dist/gen/jammi/v1/training_pb.js.map +1 -0
- package/dist/gen/jammi/v1/trigger_pb.d.ts +18 -215
- package/dist/gen/jammi/v1/trigger_pb.d.ts.map +1 -1
- package/dist/gen/jammi/v1/trigger_pb.js +11 -41
- package/dist/gen/jammi/v1/trigger_pb.js.map +1 -1
- package/dist/index.d.ts +11 -12
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -13
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/dist/gen/jammi/v1/channel_pb.d.ts +0 -158
- package/dist/gen/jammi/v1/channel_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/channel_pb.js +0 -87
- package/dist/gen/jammi/v1/channel_pb.js.map +0 -1
- package/dist/gen/jammi/v1/fine_tune_pb.d.ts +0 -706
- package/dist/gen/jammi/v1/fine_tune_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/fine_tune_pb.js +0 -271
- package/dist/gen/jammi/v1/fine_tune_pb.js.map +0 -1
- package/dist/gen/jammi/v1/mutable_table_pb.d.ts +0 -183
- package/dist/gen/jammi/v1/mutable_table_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/mutable_table_pb.js +0 -59
- package/dist/gen/jammi/v1/mutable_table_pb.js.map +0 -1
- package/dist/gen/jammi/v1/session_pb.d.ts +0 -167
- package/dist/gen/jammi/v1/session_pb.d.ts.map +0 -1
- package/dist/gen/jammi/v1/session_pb.js +0 -45
- package/dist/gen/jammi/v1/session_pb.js.map +0 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
The official TypeScript gRPC-web client for the Jammi engine.
|
|
4
4
|
|
|
5
|
-
It is **generated from the canonical proto** at `crates/jammi-
|
|
5
|
+
It is **generated from the canonical proto** at `crates/jammi-wire/proto/jammi/v1`
|
|
6
6
|
(the single codegen source for every language binding — Rust, Python, and this
|
|
7
7
|
one) using [buf] + [protobuf-es] (`protoc-gen-es`) + [Connect-ES]. The transport
|
|
8
8
|
is gRPC-web over `fetch`, so the client runs unchanged in a browser, a
|
|
@@ -45,7 +45,7 @@ The generated code lives in `src/gen/` and is **never committed** — it is
|
|
|
45
45
|
emitted at build time from the repo proto, so it cannot drift. One command:
|
|
46
46
|
|
|
47
47
|
```sh
|
|
48
|
-
npm run generate # == buf generate ../../crates/jammi-
|
|
48
|
+
npm run generate # == buf generate ../../crates/jammi-wire/proto
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
`npm run build` (and `typecheck` / `test`) regenerate first, so you rarely call
|
|
@@ -163,7 +163,7 @@ export declare const AuditFetchRecentResponseSchema: GenMessage<AuditFetchRecent
|
|
|
163
163
|
* only, per ADR-01 §3.2). The verbs name a substrate primitive — a signed
|
|
164
164
|
* per-query audit log — and carry no tenant-domain concept.
|
|
165
165
|
*
|
|
166
|
-
* Each verb delegates 1:1 to the consumer-facing `Session
|
|
166
|
+
* Each verb delegates 1:1 to the consumer-facing `Session`
|
|
167
167
|
* abstraction (`audit_log` / `audit_fetch_by_query_id` / `audit_fetch_recent`);
|
|
168
168
|
* the service reimplements no signing, storage, or query logic. The
|
|
169
169
|
* `PerQueryAudit` message mirrors the Rust record field for field, including
|
|
@@ -47,7 +47,7 @@ export const AuditFetchRecentResponseSchema = /*@__PURE__*/ messageDesc(file_jam
|
|
|
47
47
|
* only, per ADR-01 §3.2). The verbs name a substrate primitive — a signed
|
|
48
48
|
* per-query audit log — and carry no tenant-domain concept.
|
|
49
49
|
*
|
|
50
|
-
* Each verb delegates 1:1 to the consumer-facing `Session
|
|
50
|
+
* Each verb delegates 1:1 to the consumer-facing `Session`
|
|
51
51
|
* abstraction (`audit_log` / `audit_fetch_by_query_id` / `audit_fetch_recent`);
|
|
52
52
|
* the service reimplements no signing, storage, or query logic. The
|
|
53
53
|
* `PerQueryAudit` message mirrors the Rust record field for field, including
|