@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
|
@@ -1,156 +1,10 @@
|
|
|
1
1
|
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
-
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
|
3
2
|
import type { ModelTask } from "./inference_pb";
|
|
4
3
|
import type { Message } from "@bufbuild/protobuf";
|
|
5
4
|
/**
|
|
6
5
|
* Describes the file jammi/v1/embedding.proto.
|
|
7
6
|
*/
|
|
8
7
|
export declare const file_jammi_v1_embedding: GenFile;
|
|
9
|
-
/**
|
|
10
|
-
* Connection parameters for a source. Maps onto the engine's
|
|
11
|
-
* `SourceConnection`; only the fields a wire client needs to register a
|
|
12
|
-
* file-shaped corpus are exposed (storage URL + format). Cloud credentials
|
|
13
|
-
* are configured server-side, not carried on the wire.
|
|
14
|
-
*
|
|
15
|
-
* @generated from message jammi.v1.embedding.SourceConnection
|
|
16
|
-
*/
|
|
17
|
-
export type SourceConnection = Message<"jammi.v1.embedding.SourceConnection"> & {
|
|
18
|
-
/**
|
|
19
|
-
* Storage URL (file://, s3://, gs://, azure://) or external-source
|
|
20
|
-
* connection string (postgres://, mysql://).
|
|
21
|
-
*
|
|
22
|
-
* @generated from field: string url = 1;
|
|
23
|
-
*/
|
|
24
|
-
url: string;
|
|
25
|
-
/**
|
|
26
|
-
* File format — required for a FILE source, ignored otherwise.
|
|
27
|
-
*
|
|
28
|
-
* @generated from field: jammi.v1.embedding.FileFormat format = 2;
|
|
29
|
-
*/
|
|
30
|
-
format: FileFormat;
|
|
31
|
-
};
|
|
32
|
-
/**
|
|
33
|
-
* Describes the message jammi.v1.embedding.SourceConnection.
|
|
34
|
-
* Use `create(SourceConnectionSchema)` to create a new message.
|
|
35
|
-
*/
|
|
36
|
-
export declare const SourceConnectionSchema: GenMessage<SourceConnection>;
|
|
37
|
-
/**
|
|
38
|
-
* @generated from message jammi.v1.embedding.AddSourceRequest
|
|
39
|
-
*/
|
|
40
|
-
export type AddSourceRequest = Message<"jammi.v1.embedding.AddSourceRequest"> & {
|
|
41
|
-
/**
|
|
42
|
-
* @generated from field: string source_id = 1;
|
|
43
|
-
*/
|
|
44
|
-
sourceId: string;
|
|
45
|
-
/**
|
|
46
|
-
* @generated from field: jammi.v1.embedding.SourceKind source_kind = 2;
|
|
47
|
-
*/
|
|
48
|
-
sourceKind: SourceKind;
|
|
49
|
-
/**
|
|
50
|
-
* @generated from field: jammi.v1.embedding.SourceConnection connection = 3;
|
|
51
|
-
*/
|
|
52
|
-
connection?: SourceConnection | undefined;
|
|
53
|
-
};
|
|
54
|
-
/**
|
|
55
|
-
* Describes the message jammi.v1.embedding.AddSourceRequest.
|
|
56
|
-
* Use `create(AddSourceRequestSchema)` to create a new message.
|
|
57
|
-
*/
|
|
58
|
-
export declare const AddSourceRequestSchema: GenMessage<AddSourceRequest>;
|
|
59
|
-
/**
|
|
60
|
-
* @generated from message jammi.v1.embedding.RemoveSourceRequest
|
|
61
|
-
*/
|
|
62
|
-
export type RemoveSourceRequest = Message<"jammi.v1.embedding.RemoveSourceRequest"> & {
|
|
63
|
-
/**
|
|
64
|
-
* @generated from field: string source_id = 1;
|
|
65
|
-
*/
|
|
66
|
-
sourceId: string;
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
* Describes the message jammi.v1.embedding.RemoveSourceRequest.
|
|
70
|
-
* Use `create(RemoveSourceRequestSchema)` to create a new message.
|
|
71
|
-
*/
|
|
72
|
-
export declare const RemoveSourceRequestSchema: GenMessage<RemoveSourceRequest>;
|
|
73
|
-
/**
|
|
74
|
-
* @generated from message jammi.v1.embedding.ListSourcesRequest
|
|
75
|
-
*/
|
|
76
|
-
export type ListSourcesRequest = Message<"jammi.v1.embedding.ListSourcesRequest"> & {};
|
|
77
|
-
/**
|
|
78
|
-
* Describes the message jammi.v1.embedding.ListSourcesRequest.
|
|
79
|
-
* Use `create(ListSourcesRequestSchema)` to create a new message.
|
|
80
|
-
*/
|
|
81
|
-
export declare const ListSourcesRequestSchema: GenMessage<ListSourcesRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* @generated from message jammi.v1.embedding.ListSourcesResponse
|
|
84
|
-
*/
|
|
85
|
-
export type ListSourcesResponse = Message<"jammi.v1.embedding.ListSourcesResponse"> & {
|
|
86
|
-
/**
|
|
87
|
-
* One descriptor per source registered to the calling tenant, in the
|
|
88
|
-
* engine's registration order.
|
|
89
|
-
*
|
|
90
|
-
* @generated from field: repeated jammi.v1.embedding.SourceDescriptor sources = 1;
|
|
91
|
-
*/
|
|
92
|
-
sources: SourceDescriptor[];
|
|
93
|
-
};
|
|
94
|
-
/**
|
|
95
|
-
* Describes the message jammi.v1.embedding.ListSourcesResponse.
|
|
96
|
-
* Use `create(ListSourcesResponseSchema)` to create a new message.
|
|
97
|
-
*/
|
|
98
|
-
export declare const ListSourcesResponseSchema: GenMessage<ListSourcesResponse>;
|
|
99
|
-
/**
|
|
100
|
-
* @generated from message jammi.v1.embedding.DescribeSourceRequest
|
|
101
|
-
*/
|
|
102
|
-
export type DescribeSourceRequest = Message<"jammi.v1.embedding.DescribeSourceRequest"> & {
|
|
103
|
-
/**
|
|
104
|
-
* @generated from field: string source_id = 1;
|
|
105
|
-
*/
|
|
106
|
-
sourceId: string;
|
|
107
|
-
};
|
|
108
|
-
/**
|
|
109
|
-
* Describes the message jammi.v1.embedding.DescribeSourceRequest.
|
|
110
|
-
* Use `create(DescribeSourceRequestSchema)` to create a new message.
|
|
111
|
-
*/
|
|
112
|
-
export declare const DescribeSourceRequestSchema: GenMessage<DescribeSourceRequest>;
|
|
113
|
-
/**
|
|
114
|
-
* Registry introspection for one source: its registration identity plus the
|
|
115
|
-
* embedding result tables produced out of it. The embedding-side
|
|
116
|
-
* status/row_count/dimensions are carried by the `ResultTable` records
|
|
117
|
-
* (`result_tables`) — the same shape `GenerateEmbeddings` returns — rather than
|
|
118
|
-
* duplicated as descriptor fields, so there is one source-of-truth for those
|
|
119
|
-
* numbers. A freshly-registered source with no embeddings yet carries an empty
|
|
120
|
-
* `result_tables`.
|
|
121
|
-
*
|
|
122
|
-
* @generated from message jammi.v1.embedding.SourceDescriptor
|
|
123
|
-
*/
|
|
124
|
-
export type SourceDescriptor = Message<"jammi.v1.embedding.SourceDescriptor"> & {
|
|
125
|
-
/**
|
|
126
|
-
* @generated from field: string source_id = 1;
|
|
127
|
-
*/
|
|
128
|
-
sourceId: string;
|
|
129
|
-
/**
|
|
130
|
-
* The storage backend the source was registered with.
|
|
131
|
-
*
|
|
132
|
-
* @generated from field: jammi.v1.embedding.SourceKind kind = 2;
|
|
133
|
-
*/
|
|
134
|
-
kind: SourceKind;
|
|
135
|
-
/**
|
|
136
|
-
* Registration lifecycle status from the source catalog (e.g. "active").
|
|
137
|
-
*
|
|
138
|
-
* @generated from field: string status = 3;
|
|
139
|
-
*/
|
|
140
|
-
status: string;
|
|
141
|
-
/**
|
|
142
|
-
* Every embedding result table produced from this source. Empty until a
|
|
143
|
-
* `GenerateEmbeddings` call persists one.
|
|
144
|
-
*
|
|
145
|
-
* @generated from field: repeated jammi.v1.embedding.ResultTable result_tables = 4;
|
|
146
|
-
*/
|
|
147
|
-
resultTables: ResultTable[];
|
|
148
|
-
};
|
|
149
|
-
/**
|
|
150
|
-
* Describes the message jammi.v1.embedding.SourceDescriptor.
|
|
151
|
-
* Use `create(SourceDescriptorSchema)` to create a new message.
|
|
152
|
-
*/
|
|
153
|
-
export declare const SourceDescriptorSchema: GenMessage<SourceDescriptor>;
|
|
154
8
|
/**
|
|
155
9
|
* @generated from message jammi.v1.embedding.GenerateEmbeddingsRequest
|
|
156
10
|
*/
|
|
@@ -198,7 +52,7 @@ export declare const GenerateEmbeddingsRequestSchema: GenMessage<GenerateEmbeddi
|
|
|
198
52
|
* (parquet/index paths, timestamps) stay server-side. The record is
|
|
199
53
|
* self-describing — it carries its own `task` — so it reconstructs without the
|
|
200
54
|
* caller supplying the modality out of band; this is the one shape both
|
|
201
|
-
* GenerateEmbeddings and DescribeSource return.
|
|
55
|
+
* GenerateEmbeddings and the catalog's DescribeSource return.
|
|
202
56
|
*
|
|
203
57
|
* @generated from message jammi.v1.embedding.ResultTable
|
|
204
58
|
*/
|
|
@@ -455,140 +309,31 @@ export declare enum Modality {
|
|
|
455
309
|
*/
|
|
456
310
|
export declare const ModalitySchema: GenEnum<Modality>;
|
|
457
311
|
/**
|
|
458
|
-
*
|
|
459
|
-
*
|
|
460
|
-
*
|
|
461
|
-
* @generated from enum jammi.v1.embedding.SourceKind
|
|
462
|
-
*/
|
|
463
|
-
export declare enum SourceKind {
|
|
464
|
-
/**
|
|
465
|
-
* @generated from enum value: SOURCE_KIND_UNSPECIFIED = 0;
|
|
466
|
-
*/
|
|
467
|
-
UNSPECIFIED = 0,
|
|
468
|
-
/**
|
|
469
|
-
* @generated from enum value: SOURCE_KIND_FILE = 1;
|
|
470
|
-
*/
|
|
471
|
-
FILE = 1,
|
|
472
|
-
/**
|
|
473
|
-
* @generated from enum value: SOURCE_KIND_POSTGRES = 2;
|
|
474
|
-
*/
|
|
475
|
-
POSTGRES = 2,
|
|
476
|
-
/**
|
|
477
|
-
* @generated from enum value: SOURCE_KIND_MYSQL = 3;
|
|
478
|
-
*/
|
|
479
|
-
MYSQL = 3
|
|
480
|
-
}
|
|
481
|
-
/**
|
|
482
|
-
* Describes the enum jammi.v1.embedding.SourceKind.
|
|
483
|
-
*/
|
|
484
|
-
export declare const SourceKindSchema: GenEnum<SourceKind>;
|
|
485
|
-
/**
|
|
486
|
-
* File format for a file-shaped source. Mirrors the engine's `FileFormat`.
|
|
487
|
-
*
|
|
488
|
-
* @generated from enum jammi.v1.embedding.FileFormat
|
|
489
|
-
*/
|
|
490
|
-
export declare enum FileFormat {
|
|
491
|
-
/**
|
|
492
|
-
* @generated from enum value: FILE_FORMAT_UNSPECIFIED = 0;
|
|
493
|
-
*/
|
|
494
|
-
UNSPECIFIED = 0,
|
|
495
|
-
/**
|
|
496
|
-
* @generated from enum value: FILE_FORMAT_PARQUET = 1;
|
|
497
|
-
*/
|
|
498
|
-
PARQUET = 1,
|
|
499
|
-
/**
|
|
500
|
-
* @generated from enum value: FILE_FORMAT_CSV = 2;
|
|
501
|
-
*/
|
|
502
|
-
CSV = 2,
|
|
503
|
-
/**
|
|
504
|
-
* @generated from enum value: FILE_FORMAT_JSON = 3;
|
|
505
|
-
*/
|
|
506
|
-
JSON = 3,
|
|
507
|
-
/**
|
|
508
|
-
* @generated from enum value: FILE_FORMAT_AVRO = 4;
|
|
509
|
-
*/
|
|
510
|
-
AVRO = 4
|
|
511
|
-
}
|
|
512
|
-
/**
|
|
513
|
-
* Describes the enum jammi.v1.embedding.FileFormat.
|
|
514
|
-
*/
|
|
515
|
-
export declare const FileFormatSchema: GenEnum<FileFormat>;
|
|
516
|
-
/**
|
|
517
|
-
* EmbeddingService — the wire surface for the engine's embedding verbs.
|
|
518
|
-
* These are imperative session methods, not SQL queries, so they live as
|
|
519
|
-
* typed gRPC RPCs alongside SessionService / TriggerService rather than on
|
|
312
|
+
* EmbeddingService — the wire surface for the engine's embedding compute
|
|
313
|
+
* verbs. These are imperative session methods, not SQL queries, so they live
|
|
314
|
+
* as typed gRPC RPCs alongside InferenceService / TriggerService rather than on
|
|
520
315
|
* the Flight SQL surface (which carries query/result only, per ADR-01 §3.2).
|
|
521
316
|
*
|
|
522
317
|
* The surface is modality-agnostic: one GenerateEmbeddings / EncodeQuery pair
|
|
523
318
|
* keyed by a `Modality` selects the text, image, or audio tower, rather than a
|
|
524
319
|
* verb per modality. Each verb delegates 1:1 to the consumer-facing
|
|
525
|
-
* `Session
|
|
320
|
+
* `Session` abstraction, which dispatches the modality onto the
|
|
526
321
|
* engine's concrete tower method — the service reimplements no decode,
|
|
527
322
|
* feature-extraction, or forward logic; it is purely a wire adapter over the
|
|
528
323
|
* in-process engine. Jammi stays non-generative: these encode input → vector,
|
|
529
324
|
* never generate.
|
|
530
325
|
*
|
|
326
|
+
* Source registration and model introspection — the control-plane catalog
|
|
327
|
+
* surface this compute lane reads — live on CatalogService, not here. This
|
|
328
|
+
* service carries the data-plane compute verbs only.
|
|
329
|
+
*
|
|
531
330
|
* Tenant scope is read from the request's `SessionTenant` extension, set by
|
|
532
331
|
* the shared TenantInterceptor from the `jammi-session-id` header — the same
|
|
533
|
-
* mechanism
|
|
332
|
+
* mechanism CatalogService / TriggerService / Flight SQL already use.
|
|
534
333
|
*
|
|
535
334
|
* @generated from service jammi.v1.embedding.EmbeddingService
|
|
536
335
|
*/
|
|
537
336
|
export declare const EmbeddingService: GenService<{
|
|
538
|
-
/**
|
|
539
|
-
* Register a data source so a later GenerateEmbeddings call can scan it.
|
|
540
|
-
* Peer of the abstraction's `add_source`. The source carries any modality
|
|
541
|
-
* the engine supports; the kind here is the storage backend, not the
|
|
542
|
-
* content modality. Idempotent only insofar as the engine allows —
|
|
543
|
-
* re-registering an id that already exists is an error.
|
|
544
|
-
*
|
|
545
|
-
* @generated from rpc jammi.v1.embedding.EmbeddingService.AddSource
|
|
546
|
-
*/
|
|
547
|
-
addSource: {
|
|
548
|
-
methodKind: "unary";
|
|
549
|
-
input: typeof AddSourceRequestSchema;
|
|
550
|
-
output: typeof EmptySchema;
|
|
551
|
-
};
|
|
552
|
-
/**
|
|
553
|
-
* Remove a registered source and all associated state (embedding tables,
|
|
554
|
-
* indexes). Peer of the abstraction's `remove_source`.
|
|
555
|
-
*
|
|
556
|
-
* @generated from rpc jammi.v1.embedding.EmbeddingService.RemoveSource
|
|
557
|
-
*/
|
|
558
|
-
removeSource: {
|
|
559
|
-
methodKind: "unary";
|
|
560
|
-
input: typeof RemoveSourceRequestSchema;
|
|
561
|
-
output: typeof EmptySchema;
|
|
562
|
-
};
|
|
563
|
-
/**
|
|
564
|
-
* List a `SourceDescriptor` for every source registered to the calling
|
|
565
|
-
* tenant. Peer of the abstraction's `list_sources`; registry introspection,
|
|
566
|
-
* not a SQL query. `ListSources` is `DescribeSource` applied over every
|
|
567
|
-
* registered source — one descriptor shape, one operator, no per-source
|
|
568
|
-
* special-casing.
|
|
569
|
-
*
|
|
570
|
-
* @generated from rpc jammi.v1.embedding.EmbeddingService.ListSources
|
|
571
|
-
*/
|
|
572
|
-
listSources: {
|
|
573
|
-
methodKind: "unary";
|
|
574
|
-
input: typeof ListSourcesRequestSchema;
|
|
575
|
-
output: typeof ListSourcesResponseSchema;
|
|
576
|
-
};
|
|
577
|
-
/**
|
|
578
|
-
* Describe one registered source: its registry identity (id / kind /
|
|
579
|
-
* lifecycle status) plus the result tables embedded out of it (each carrying
|
|
580
|
-
* its own status / row_count / dimensions). Peer of the abstraction's
|
|
581
|
-
* `describe_source`. The embedding status / row_count / dimensions are read
|
|
582
|
-
* from the engine's result-table record — the same source-of-truth a
|
|
583
|
-
* `GenerateEmbeddings` response returns — never a parallel registry.
|
|
584
|
-
*
|
|
585
|
-
* @generated from rpc jammi.v1.embedding.EmbeddingService.DescribeSource
|
|
586
|
-
*/
|
|
587
|
-
describeSource: {
|
|
588
|
-
methodKind: "unary";
|
|
589
|
-
input: typeof DescribeSourceRequestSchema;
|
|
590
|
-
output: typeof SourceDescriptorSchema;
|
|
591
|
-
};
|
|
592
337
|
/**
|
|
593
338
|
* Scan `columns` on a registered source, run the modality's tower over
|
|
594
339
|
* every row (decode/feature-extraction as the modality requires → forward
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"embedding_pb.d.ts","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/embedding_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAE7F,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"embedding_pb.d.ts","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/embedding_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,87 +2,51 @@
|
|
|
2
2
|
// @generated from file jammi/v1/embedding.proto (package jammi.v1.embedding, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
import { enumDesc, fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
-
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
|
6
5
|
import { file_jammi_v1_inference } from "./inference_pb";
|
|
7
6
|
/**
|
|
8
7
|
* Describes the file jammi/v1/embedding.proto.
|
|
9
8
|
*/
|
|
10
|
-
export const file_jammi_v1_embedding = /*@__PURE__*/ fileDesc("
|
|
11
|
-
/**
|
|
12
|
-
* Describes the message jammi.v1.embedding.SourceConnection.
|
|
13
|
-
* Use `create(SourceConnectionSchema)` to create a new message.
|
|
14
|
-
*/
|
|
15
|
-
export const SourceConnectionSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 0);
|
|
16
|
-
/**
|
|
17
|
-
* Describes the message jammi.v1.embedding.AddSourceRequest.
|
|
18
|
-
* Use `create(AddSourceRequestSchema)` to create a new message.
|
|
19
|
-
*/
|
|
20
|
-
export const AddSourceRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 1);
|
|
21
|
-
/**
|
|
22
|
-
* Describes the message jammi.v1.embedding.RemoveSourceRequest.
|
|
23
|
-
* Use `create(RemoveSourceRequestSchema)` to create a new message.
|
|
24
|
-
*/
|
|
25
|
-
export const RemoveSourceRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 2);
|
|
26
|
-
/**
|
|
27
|
-
* Describes the message jammi.v1.embedding.ListSourcesRequest.
|
|
28
|
-
* Use `create(ListSourcesRequestSchema)` to create a new message.
|
|
29
|
-
*/
|
|
30
|
-
export const ListSourcesRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 3);
|
|
31
|
-
/**
|
|
32
|
-
* Describes the message jammi.v1.embedding.ListSourcesResponse.
|
|
33
|
-
* Use `create(ListSourcesResponseSchema)` to create a new message.
|
|
34
|
-
*/
|
|
35
|
-
export const ListSourcesResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 4);
|
|
36
|
-
/**
|
|
37
|
-
* Describes the message jammi.v1.embedding.DescribeSourceRequest.
|
|
38
|
-
* Use `create(DescribeSourceRequestSchema)` to create a new message.
|
|
39
|
-
*/
|
|
40
|
-
export const DescribeSourceRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 5);
|
|
41
|
-
/**
|
|
42
|
-
* Describes the message jammi.v1.embedding.SourceDescriptor.
|
|
43
|
-
* Use `create(SourceDescriptorSchema)` to create a new message.
|
|
44
|
-
*/
|
|
45
|
-
export const SourceDescriptorSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 6);
|
|
9
|
+
export const file_jammi_v1_embedding = /*@__PURE__*/ fileDesc("ChhqYW1taS92MS9lbWJlZGRpbmcucHJvdG8SEmphbW1pLnYxLmVtYmVkZGluZyKVAQoZR2VuZXJhdGVFbWJlZGRpbmdzUmVxdWVzdBIRCglzb3VyY2VfaWQYASABKAkSEAoIbW9kZWxfaWQYAiABKAkSDwoHY29sdW1ucxgDIAMoCRISCgprZXlfY29sdW1uGAQgASgJEi4KCG1vZGFsaXR5GAUgASgOMhwuamFtbWkudjEuZW1iZWRkaW5nLk1vZGFsaXR5IqoBCgtSZXN1bHRUYWJsZRISCgp0YWJsZV9uYW1lGAEgASgJEhEKCXNvdXJjZV9pZBgCIAEoCRIQCghtb2RlbF9pZBgDIAEoCRISCgpkaW1lbnNpb25zGAQgASgFEhEKCXJvd19jb3VudBgFIAEoBBIOCgZzdGF0dXMYBiABKAkSKwoEdGFzaxgHIAEoDjIdLmphbW1pLnYxLmluZmVyZW5jZS5Nb2RlbFRhc2sifwoSRW5jb2RlUXVlcnlSZXF1ZXN0EhAKCG1vZGVsX2lkGAEgASgJEi4KCG1vZGFsaXR5GAIgASgOMhwuamFtbWkudjEuZW1iZWRkaW5nLk1vZGFsaXR5Eg4KBHRleHQYAyABKAlIABIOCgRkYXRhGAQgASgMSABCBwoFaW5wdXQiKAoTRW5jb2RlUXVlcnlSZXNwb25zZRIRCgllbWJlZGRpbmcYASADKAIiHQoLUXVlcnlWZWN0b3ISDgoGdmFsdWVzGAEgAygCIrIBCg1TZWFyY2hSZXF1ZXN0EhEKCXNvdXJjZV9pZBgBIAEoCRI3CgxxdWVyeV92ZWN0b3IYAiABKAsyHy5qYW1taS52MS5lbWJlZGRpbmcuUXVlcnlWZWN0b3JIABIRCgdyb3dfa2V5GAMgASgJSAASCQoBaxgEIAEoDRITCgZmaWx0ZXIYBSABKAlIAYgBARIOCgZzZWxlY3QYBiADKAlCBwoFcXVlcnlCCQoHX2ZpbHRlciI9Cg5TZWFyY2hSZXNwb25zZRIrCgRoaXRzGAEgAygLMh0uamFtbWkudjEuZW1iZWRkaW5nLlNlYXJjaEhpdCKUAQoJU2VhcmNoSGl0EgsKA2tleRgBIAEoCRINCgVzY29yZRgCIAEoAhI7Cgdjb2x1bW5zGAMgAygLMiouamFtbWkudjEuZW1iZWRkaW5nLlNlYXJjaEhpdC5Db2x1bW5zRW50cnkaLgoMQ29sdW1uc0VudHJ5EgsKA2tleRgBIAEoCRINCgV2YWx1ZRgCIAEoCToCOAEqRAoITW9kYWxpdHkSGAoUTU9EQUxJVFlfVU5TUEVDSUZJRUQQABIICgRURVhUEAESCQoFSU1BR0UQAhIJCgVBVURJTxADMqkCChBFbWJlZGRpbmdTZXJ2aWNlEmQKEkdlbmVyYXRlRW1iZWRkaW5ncxItLmphbW1pLnYxLmVtYmVkZGluZy5HZW5lcmF0ZUVtYmVkZGluZ3NSZXF1ZXN0Gh8uamFtbWkudjEuZW1iZWRkaW5nLlJlc3VsdFRhYmxlEl4KC0VuY29kZVF1ZXJ5EiYuamFtbWkudjEuZW1iZWRkaW5nLkVuY29kZVF1ZXJ5UmVxdWVzdBonLmphbW1pLnYxLmVtYmVkZGluZy5FbmNvZGVRdWVyeVJlc3BvbnNlEk8KBlNlYXJjaBIhLmphbW1pLnYxLmVtYmVkZGluZy5TZWFyY2hSZXF1ZXN0GiIuamFtbWkudjEuZW1iZWRkaW5nLlNlYXJjaFJlc3BvbnNlYgZwcm90bzM", [file_jammi_v1_inference]);
|
|
46
10
|
/**
|
|
47
11
|
* Describes the message jammi.v1.embedding.GenerateEmbeddingsRequest.
|
|
48
12
|
* Use `create(GenerateEmbeddingsRequestSchema)` to create a new message.
|
|
49
13
|
*/
|
|
50
|
-
export const GenerateEmbeddingsRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
14
|
+
export const GenerateEmbeddingsRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 0);
|
|
51
15
|
/**
|
|
52
16
|
* Describes the message jammi.v1.embedding.ResultTable.
|
|
53
17
|
* Use `create(ResultTableSchema)` to create a new message.
|
|
54
18
|
*/
|
|
55
|
-
export const ResultTableSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
19
|
+
export const ResultTableSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 1);
|
|
56
20
|
/**
|
|
57
21
|
* Describes the message jammi.v1.embedding.EncodeQueryRequest.
|
|
58
22
|
* Use `create(EncodeQueryRequestSchema)` to create a new message.
|
|
59
23
|
*/
|
|
60
|
-
export const EncodeQueryRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
24
|
+
export const EncodeQueryRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 2);
|
|
61
25
|
/**
|
|
62
26
|
* Describes the message jammi.v1.embedding.EncodeQueryResponse.
|
|
63
27
|
* Use `create(EncodeQueryResponseSchema)` to create a new message.
|
|
64
28
|
*/
|
|
65
|
-
export const EncodeQueryResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
29
|
+
export const EncodeQueryResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 3);
|
|
66
30
|
/**
|
|
67
31
|
* Describes the message jammi.v1.embedding.QueryVector.
|
|
68
32
|
* Use `create(QueryVectorSchema)` to create a new message.
|
|
69
33
|
*/
|
|
70
|
-
export const QueryVectorSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
34
|
+
export const QueryVectorSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 4);
|
|
71
35
|
/**
|
|
72
36
|
* Describes the message jammi.v1.embedding.SearchRequest.
|
|
73
37
|
* Use `create(SearchRequestSchema)` to create a new message.
|
|
74
38
|
*/
|
|
75
|
-
export const SearchRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
39
|
+
export const SearchRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 5);
|
|
76
40
|
/**
|
|
77
41
|
* Describes the message jammi.v1.embedding.SearchResponse.
|
|
78
42
|
* Use `create(SearchResponseSchema)` to create a new message.
|
|
79
43
|
*/
|
|
80
|
-
export const SearchResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
44
|
+
export const SearchResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 6);
|
|
81
45
|
/**
|
|
82
46
|
* Describes the message jammi.v1.embedding.SearchHit.
|
|
83
47
|
* Use `create(SearchHitSchema)` to create a new message.
|
|
84
48
|
*/
|
|
85
|
-
export const SearchHitSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding,
|
|
49
|
+
export const SearchHitSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_embedding, 7);
|
|
86
50
|
/**
|
|
87
51
|
* Which embedding tower a GenerateEmbeddings / EncodeQuery call targets.
|
|
88
52
|
* Mirrors the abstraction's `Modality`; unifying the three per-modality verbs
|
|
@@ -114,84 +78,27 @@ export var Modality;
|
|
|
114
78
|
*/
|
|
115
79
|
export const ModalitySchema = /*@__PURE__*/ enumDesc(file_jammi_v1_embedding, 0);
|
|
116
80
|
/**
|
|
117
|
-
*
|
|
118
|
-
*
|
|
119
|
-
*
|
|
120
|
-
* @generated from enum jammi.v1.embedding.SourceKind
|
|
121
|
-
*/
|
|
122
|
-
export var SourceKind;
|
|
123
|
-
(function (SourceKind) {
|
|
124
|
-
/**
|
|
125
|
-
* @generated from enum value: SOURCE_KIND_UNSPECIFIED = 0;
|
|
126
|
-
*/
|
|
127
|
-
SourceKind[SourceKind["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
128
|
-
/**
|
|
129
|
-
* @generated from enum value: SOURCE_KIND_FILE = 1;
|
|
130
|
-
*/
|
|
131
|
-
SourceKind[SourceKind["FILE"] = 1] = "FILE";
|
|
132
|
-
/**
|
|
133
|
-
* @generated from enum value: SOURCE_KIND_POSTGRES = 2;
|
|
134
|
-
*/
|
|
135
|
-
SourceKind[SourceKind["POSTGRES"] = 2] = "POSTGRES";
|
|
136
|
-
/**
|
|
137
|
-
* @generated from enum value: SOURCE_KIND_MYSQL = 3;
|
|
138
|
-
*/
|
|
139
|
-
SourceKind[SourceKind["MYSQL"] = 3] = "MYSQL";
|
|
140
|
-
})(SourceKind || (SourceKind = {}));
|
|
141
|
-
/**
|
|
142
|
-
* Describes the enum jammi.v1.embedding.SourceKind.
|
|
143
|
-
*/
|
|
144
|
-
export const SourceKindSchema = /*@__PURE__*/ enumDesc(file_jammi_v1_embedding, 1);
|
|
145
|
-
/**
|
|
146
|
-
* File format for a file-shaped source. Mirrors the engine's `FileFormat`.
|
|
147
|
-
*
|
|
148
|
-
* @generated from enum jammi.v1.embedding.FileFormat
|
|
149
|
-
*/
|
|
150
|
-
export var FileFormat;
|
|
151
|
-
(function (FileFormat) {
|
|
152
|
-
/**
|
|
153
|
-
* @generated from enum value: FILE_FORMAT_UNSPECIFIED = 0;
|
|
154
|
-
*/
|
|
155
|
-
FileFormat[FileFormat["UNSPECIFIED"] = 0] = "UNSPECIFIED";
|
|
156
|
-
/**
|
|
157
|
-
* @generated from enum value: FILE_FORMAT_PARQUET = 1;
|
|
158
|
-
*/
|
|
159
|
-
FileFormat[FileFormat["PARQUET"] = 1] = "PARQUET";
|
|
160
|
-
/**
|
|
161
|
-
* @generated from enum value: FILE_FORMAT_CSV = 2;
|
|
162
|
-
*/
|
|
163
|
-
FileFormat[FileFormat["CSV"] = 2] = "CSV";
|
|
164
|
-
/**
|
|
165
|
-
* @generated from enum value: FILE_FORMAT_JSON = 3;
|
|
166
|
-
*/
|
|
167
|
-
FileFormat[FileFormat["JSON"] = 3] = "JSON";
|
|
168
|
-
/**
|
|
169
|
-
* @generated from enum value: FILE_FORMAT_AVRO = 4;
|
|
170
|
-
*/
|
|
171
|
-
FileFormat[FileFormat["AVRO"] = 4] = "AVRO";
|
|
172
|
-
})(FileFormat || (FileFormat = {}));
|
|
173
|
-
/**
|
|
174
|
-
* Describes the enum jammi.v1.embedding.FileFormat.
|
|
175
|
-
*/
|
|
176
|
-
export const FileFormatSchema = /*@__PURE__*/ enumDesc(file_jammi_v1_embedding, 2);
|
|
177
|
-
/**
|
|
178
|
-
* EmbeddingService — the wire surface for the engine's embedding verbs.
|
|
179
|
-
* These are imperative session methods, not SQL queries, so they live as
|
|
180
|
-
* typed gRPC RPCs alongside SessionService / TriggerService rather than on
|
|
81
|
+
* EmbeddingService — the wire surface for the engine's embedding compute
|
|
82
|
+
* verbs. These are imperative session methods, not SQL queries, so they live
|
|
83
|
+
* as typed gRPC RPCs alongside InferenceService / TriggerService rather than on
|
|
181
84
|
* the Flight SQL surface (which carries query/result only, per ADR-01 §3.2).
|
|
182
85
|
*
|
|
183
86
|
* The surface is modality-agnostic: one GenerateEmbeddings / EncodeQuery pair
|
|
184
87
|
* keyed by a `Modality` selects the text, image, or audio tower, rather than a
|
|
185
88
|
* verb per modality. Each verb delegates 1:1 to the consumer-facing
|
|
186
|
-
* `Session
|
|
89
|
+
* `Session` abstraction, which dispatches the modality onto the
|
|
187
90
|
* engine's concrete tower method — the service reimplements no decode,
|
|
188
91
|
* feature-extraction, or forward logic; it is purely a wire adapter over the
|
|
189
92
|
* in-process engine. Jammi stays non-generative: these encode input → vector,
|
|
190
93
|
* never generate.
|
|
191
94
|
*
|
|
95
|
+
* Source registration and model introspection — the control-plane catalog
|
|
96
|
+
* surface this compute lane reads — live on CatalogService, not here. This
|
|
97
|
+
* service carries the data-plane compute verbs only.
|
|
98
|
+
*
|
|
192
99
|
* Tenant scope is read from the request's `SessionTenant` extension, set by
|
|
193
100
|
* the shared TenantInterceptor from the `jammi-session-id` header — the same
|
|
194
|
-
* mechanism
|
|
101
|
+
* mechanism CatalogService / TriggerService / Flight SQL already use.
|
|
195
102
|
*
|
|
196
103
|
* @generated from service jammi.v1.embedding.EmbeddingService
|
|
197
104
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"embedding_pb.js","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/embedding_pb.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,4FAA4F;AAC5F,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE5F,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"embedding_pb.js","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/embedding_pb.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,4FAA4F;AAC5F,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAGzD;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAY,aAAa,CAC3D,QAAQ,CAAC,qwDAAqwD,EAAE,CAAC,uBAAuB,CAAC,CAAC,CAAC;AA2C7yD;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AA0D1C;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAuC1C;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAc1C;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAe1C;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AA2D1C;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAY1C;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AA4B1C;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAA0B,aAAa,CACjE,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAE1C;;;;;;GAMG;AACH,MAAM,CAAN,IAAY,QAoBX;AApBD,WAAY,QAAQ;IAClB;;OAEG;IACH,uEAAwB,CAAA;IAExB;;OAEG;IACH,uCAAQ,CAAA;IAER;;OAEG;IACH,yCAAS,CAAA;IAET;;OAEG;IACH,yCAAS,CAAA;AACX,CAAC,EApBW,QAAQ,KAAR,QAAQ,QAoBnB;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAsB,aAAa,CAC5D,QAAQ,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAEvC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAM,CAAC,MAAM,gBAAgB,GA4CxB,aAAa,CAChB,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -478,7 +478,7 @@ export declare const SchemaErrorSchema: GenMessage<SchemaError>;
|
|
|
478
478
|
/**
|
|
479
479
|
* TriggerErrorDetail — the structured wire detail for `jammi_db::TriggerError`,
|
|
480
480
|
* attached to a `tonic::Status` by the server's `map_trigger_error` so a remote
|
|
481
|
-
*
|
|
481
|
+
* the data-plane client reconstructs the EXACT `TriggerError` the in-process path
|
|
482
482
|
* returns (the standard gRPC code set collapses several variants onto one code).
|
|
483
483
|
*
|
|
484
484
|
* The contract is complete and faithful over `TriggerError`. Every owned-shape
|
|
@@ -656,7 +656,7 @@ export declare const PublishTenantMismatchSchema: GenMessage<PublishTenantMismat
|
|
|
656
656
|
/**
|
|
657
657
|
* AuditErrorDetail — the structured wire detail for `jammi_db::AuditError`,
|
|
658
658
|
* attached to a `tonic::Status` by the server's `map_audit_error` so a remote
|
|
659
|
-
*
|
|
659
|
+
* the data-plane client reconstructs the EXACT `AuditError` the in-process path
|
|
660
660
|
* returns.
|
|
661
661
|
*
|
|
662
662
|
* Every owned-shape variant has its own typed arm and reconstructs faithfully.
|