@f-inverse/jammi-client 0.25.0 → 0.26.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.
Files changed (53) hide show
  1. package/README.md +2 -2
  2. package/dist/gen/jammi/v1/audit_pb.d.ts +1 -1
  3. package/dist/gen/jammi/v1/audit_pb.js +1 -1
  4. package/dist/gen/jammi/v1/catalog_pb.d.ts +1148 -0
  5. package/dist/gen/jammi/v1/catalog_pb.d.ts.map +1 -0
  6. package/dist/gen/jammi/v1/catalog_pb.js +320 -0
  7. package/dist/gen/jammi/v1/catalog_pb.js.map +1 -0
  8. package/dist/gen/jammi/v1/embedding_pb.d.ts +10 -265
  9. package/dist/gen/jammi/v1/embedding_pb.d.ts.map +1 -1
  10. package/dist/gen/jammi/v1/embedding_pb.js +18 -111
  11. package/dist/gen/jammi/v1/embedding_pb.js.map +1 -1
  12. package/dist/gen/jammi/v1/error_pb.d.ts +2 -2
  13. package/dist/gen/jammi/v1/eval_pb.d.ts +287 -1
  14. package/dist/gen/jammi/v1/eval_pb.d.ts.map +1 -1
  15. package/dist/gen/jammi/v1/eval_pb.js +82 -25
  16. package/dist/gen/jammi/v1/eval_pb.js.map +1 -1
  17. package/dist/gen/jammi/v1/inference_pb.d.ts +272 -1
  18. package/dist/gen/jammi/v1/inference_pb.d.ts.map +1 -1
  19. package/dist/gen/jammi/v1/inference_pb.js +61 -2
  20. package/dist/gen/jammi/v1/inference_pb.js.map +1 -1
  21. package/dist/gen/jammi/v1/pipeline_pb.d.ts +491 -0
  22. package/dist/gen/jammi/v1/pipeline_pb.d.ts.map +1 -0
  23. package/dist/gen/jammi/v1/pipeline_pb.js +154 -0
  24. package/dist/gen/jammi/v1/pipeline_pb.js.map +1 -0
  25. package/dist/gen/jammi/v1/training_pb.d.ts +1217 -0
  26. package/dist/gen/jammi/v1/training_pb.d.ts.map +1 -0
  27. package/dist/gen/jammi/v1/training_pb.js +388 -0
  28. package/dist/gen/jammi/v1/training_pb.js.map +1 -0
  29. package/dist/gen/jammi/v1/trigger_pb.d.ts +18 -215
  30. package/dist/gen/jammi/v1/trigger_pb.d.ts.map +1 -1
  31. package/dist/gen/jammi/v1/trigger_pb.js +11 -41
  32. package/dist/gen/jammi/v1/trigger_pb.js.map +1 -1
  33. package/dist/index.d.ts +11 -12
  34. package/dist/index.d.ts.map +1 -1
  35. package/dist/index.js +10 -13
  36. package/dist/index.js.map +1 -1
  37. package/package.json +2 -2
  38. package/dist/gen/jammi/v1/channel_pb.d.ts +0 -158
  39. package/dist/gen/jammi/v1/channel_pb.d.ts.map +0 -1
  40. package/dist/gen/jammi/v1/channel_pb.js +0 -87
  41. package/dist/gen/jammi/v1/channel_pb.js.map +0 -1
  42. package/dist/gen/jammi/v1/fine_tune_pb.d.ts +0 -706
  43. package/dist/gen/jammi/v1/fine_tune_pb.d.ts.map +0 -1
  44. package/dist/gen/jammi/v1/fine_tune_pb.js +0 -271
  45. package/dist/gen/jammi/v1/fine_tune_pb.js.map +0 -1
  46. package/dist/gen/jammi/v1/mutable_table_pb.d.ts +0 -183
  47. package/dist/gen/jammi/v1/mutable_table_pb.d.ts.map +0 -1
  48. package/dist/gen/jammi/v1/mutable_table_pb.js +0 -59
  49. package/dist/gen/jammi/v1/mutable_table_pb.js.map +0 -1
  50. package/dist/gen/jammi/v1/session_pb.d.ts +0 -167
  51. package/dist/gen/jammi/v1/session_pb.d.ts.map +0 -1
  52. package/dist/gen/jammi/v1/session_pb.js +0 -45
  53. 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-ai/proto/jammi/v1`
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-ai/proto
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`/`LocalSession`
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`/`LocalSession`
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