@liquidmetal-ai/drizzle 0.2.3 → 0.2.9
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/CHANGELOG.md +7 -0
- package/dist/appify/build.d.ts +8 -0
- package/dist/appify/build.d.ts.map +1 -1
- package/dist/appify/build.js +68 -2
- package/dist/appify/build.test.js +170 -2
- package/dist/appify/parse.d.ts +13 -2
- package/dist/appify/parse.d.ts.map +1 -1
- package/dist/appify/parse.js +51 -2
- package/dist/appify/parse.test.js +149 -2
- package/dist/codestore.js +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +526 -479
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +210 -1726
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts +110 -92
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +38 -361
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts +14 -13
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/raindrop_pb.js +10 -48
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts +146 -122
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_pb.js +49 -428
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts +262 -142
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/search_agent_pb.js +68 -684
- package/eslint.config.mjs +3 -1
- package/package.json +2 -1
- package/src/appify/build.test.ts +197 -2
- package/src/appify/build.ts +71 -2
- package/src/appify/parse.test.ts +154 -2
- package/src/appify/parse.ts +55 -3
- package/src/codestore.ts +1 -1
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +719 -1467
- package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +142 -284
- package/src/liquidmetal/v1alpha1/raindrop_pb.ts +21 -35
- package/src/liquidmetal/v1alpha1/resource_interface_pb.ts +192 -378
- package/src/liquidmetal/v1alpha1/search_agent_pb.ts +310 -450
- package/tsconfig.json +11 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/.turbo/turbo-lint.log +0 -6
- package/.turbo/turbo-test.log +0 -6
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +0 -168
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/catalog_connect.js +0 -171
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts +0 -49
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_connect.js +0 -52
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts +0 -26
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_public_connect.js +0 -29
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts +0 -202
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/rainbow_public_pb.js +0 -298
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts +0 -68
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/resource_interface_connect.js +0 -73
- package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts +0 -170
- package/dist/liquidmetal/v1alpha1/search_agent_connect.d.ts.map +0 -1
- package/dist/liquidmetal/v1alpha1/search_agent_connect.js +0 -173
- package/src/liquidmetal/v1alpha1/catalog_connect.ts +0 -174
- package/src/liquidmetal/v1alpha1/rainbow_auth_connect.ts +0 -55
- package/src/liquidmetal/v1alpha1/rainbow_public_connect.ts +0 -32
- package/src/liquidmetal/v1alpha1/rainbow_public_pb.ts +0 -366
- package/src/liquidmetal/v1alpha1/resource_interface_connect.ts +0 -77
- package/src/liquidmetal/v1alpha1/search_agent_connect.ts +0 -176
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import { Message
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file liquidmetal/v1alpha1/search_agent.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_liquidmetal_v1alpha1_search_agent: GenFile;
|
|
3
7
|
/**
|
|
4
8
|
* DocumentChatRequest initiates or continues a conversation about a specific document.
|
|
5
9
|
* The system maintains conversation context for natural, flowing dialogue about
|
|
@@ -7,7 +11,7 @@ import { Message, proto3 } from "@bufbuild/protobuf";
|
|
|
7
11
|
*
|
|
8
12
|
* @generated from message liquidmetal.v1alpha1.DocumentChatRequest
|
|
9
13
|
*/
|
|
10
|
-
export
|
|
14
|
+
export type DocumentChatRequest = Message<"liquidmetal.v1alpha1.DocumentChatRequest"> & {
|
|
11
15
|
/**
|
|
12
16
|
* The storage bucket containing the target document
|
|
13
17
|
* Must be a valid, registered Smart Bucket
|
|
@@ -36,15 +40,12 @@ export declare class DocumentChatRequest extends Message<DocumentChatRequest> {
|
|
|
36
40
|
* @generated from field: string request_id = 4;
|
|
37
41
|
*/
|
|
38
42
|
requestId: string;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DocumentChatRequest;
|
|
46
|
-
static equals(a: DocumentChatRequest | PlainMessage<DocumentChatRequest> | undefined, b: DocumentChatRequest | PlainMessage<DocumentChatRequest> | undefined): boolean;
|
|
47
|
-
}
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Describes the message liquidmetal.v1alpha1.DocumentChatRequest.
|
|
46
|
+
* Use `create(DocumentChatRequestSchema)` to create a new message.
|
|
47
|
+
*/
|
|
48
|
+
export declare const DocumentChatRequestSchema: GenMessage<DocumentChatRequest>;
|
|
48
49
|
/**
|
|
49
50
|
* DocumentChatResponse contains the AI's response based on document content
|
|
50
51
|
* and conversation context. Responses are generated considering both the
|
|
@@ -52,7 +53,7 @@ export declare class DocumentChatRequest extends Message<DocumentChatRequest> {
|
|
|
52
53
|
*
|
|
53
54
|
* @generated from message liquidmetal.v1alpha1.DocumentChatResponse
|
|
54
55
|
*/
|
|
55
|
-
export
|
|
56
|
+
export type DocumentChatResponse = Message<"liquidmetal.v1alpha1.DocumentChatResponse"> & {
|
|
56
57
|
/**
|
|
57
58
|
* AI-generated response that may include:
|
|
58
59
|
* - Direct document quotes
|
|
@@ -64,15 +65,12 @@ export declare class DocumentChatResponse extends Message<DocumentChatResponse>
|
|
|
64
65
|
* @generated from field: string answer = 1;
|
|
65
66
|
*/
|
|
66
67
|
answer: string;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DocumentChatResponse;
|
|
74
|
-
static equals(a: DocumentChatResponse | PlainMessage<DocumentChatResponse> | undefined, b: DocumentChatResponse | PlainMessage<DocumentChatResponse> | undefined): boolean;
|
|
75
|
-
}
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message liquidmetal.v1alpha1.DocumentChatResponse.
|
|
71
|
+
* Use `create(DocumentChatResponseSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export declare const DocumentChatResponseSchema: GenMessage<DocumentChatResponse>;
|
|
76
74
|
/**
|
|
77
75
|
* RagSearchRequest enables semantic search across document collections using
|
|
78
76
|
* natural language queries. The system automatically optimizes the search
|
|
@@ -80,7 +78,7 @@ export declare class DocumentChatResponse extends Message<DocumentChatResponse>
|
|
|
80
78
|
*
|
|
81
79
|
* @generated from message liquidmetal.v1alpha1.RagSearchRequest
|
|
82
80
|
*/
|
|
83
|
-
export
|
|
81
|
+
export type RagSearchRequest = Message<"liquidmetal.v1alpha1.RagSearchRequest"> & {
|
|
84
82
|
/**
|
|
85
83
|
* Natural language query or question
|
|
86
84
|
* Can include complex criteria and relationships
|
|
@@ -102,15 +100,12 @@ export declare class RagSearchRequest extends Message<RagSearchRequest> {
|
|
|
102
100
|
* @generated from field: repeated string bucket_ids = 3;
|
|
103
101
|
*/
|
|
104
102
|
bucketIds: string[];
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RagSearchRequest;
|
|
112
|
-
static equals(a: RagSearchRequest | PlainMessage<RagSearchRequest> | undefined, b: RagSearchRequest | PlainMessage<RagSearchRequest> | undefined): boolean;
|
|
113
|
-
}
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* Describes the message liquidmetal.v1alpha1.RagSearchRequest.
|
|
106
|
+
* Use `create(RagSearchRequestSchema)` to create a new message.
|
|
107
|
+
*/
|
|
108
|
+
export declare const RagSearchRequestSchema: GenMessage<RagSearchRequest>;
|
|
114
109
|
/**
|
|
115
110
|
* RagSearchResponse provides semantically relevant results with metadata
|
|
116
111
|
* and relevance scoring. Results are automatically filtered for PII
|
|
@@ -118,7 +113,7 @@ export declare class RagSearchRequest extends Message<RagSearchRequest> {
|
|
|
118
113
|
*
|
|
119
114
|
* @generated from message liquidmetal.v1alpha1.RagSearchResponse
|
|
120
115
|
*/
|
|
121
|
-
export
|
|
116
|
+
export type RagSearchResponse = Message<"liquidmetal.v1alpha1.RagSearchResponse"> & {
|
|
122
117
|
/**
|
|
123
118
|
* Ordered list of relevant text segments
|
|
124
119
|
* Each result includes full context and metadata
|
|
@@ -126,15 +121,12 @@ export declare class RagSearchResponse extends Message<RagSearchResponse> {
|
|
|
126
121
|
* @generated from field: repeated liquidmetal.v1alpha1.TextResult results = 1;
|
|
127
122
|
*/
|
|
128
123
|
results: TextResult[];
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RagSearchResponse;
|
|
136
|
-
static equals(a: RagSearchResponse | PlainMessage<RagSearchResponse> | undefined, b: RagSearchResponse | PlainMessage<RagSearchResponse> | undefined): boolean;
|
|
137
|
-
}
|
|
124
|
+
};
|
|
125
|
+
/**
|
|
126
|
+
* Describes the message liquidmetal.v1alpha1.RagSearchResponse.
|
|
127
|
+
* Use `create(RagSearchResponseSchema)` to create a new message.
|
|
128
|
+
*/
|
|
129
|
+
export declare const RagSearchResponseSchema: GenMessage<RagSearchResponse>;
|
|
138
130
|
/**
|
|
139
131
|
* TextResult represents a single search result with comprehensive metadata
|
|
140
132
|
* and relevance information. This structure provides all necessary context
|
|
@@ -142,7 +134,7 @@ export declare class RagSearchResponse extends Message<RagSearchResponse> {
|
|
|
142
134
|
*
|
|
143
135
|
* @generated from message liquidmetal.v1alpha1.TextResult
|
|
144
136
|
*/
|
|
145
|
-
export
|
|
137
|
+
export type TextResult = Message<"liquidmetal.v1alpha1.TextResult"> & {
|
|
146
138
|
/**
|
|
147
139
|
* Unique identifier for this text segment
|
|
148
140
|
* Used for deduplication and result tracking
|
|
@@ -192,15 +184,12 @@ export declare class TextResult extends Message<TextResult> {
|
|
|
192
184
|
* @generated from field: optional string type = 7;
|
|
193
185
|
*/
|
|
194
186
|
type?: string;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TextResult;
|
|
202
|
-
static equals(a: TextResult | PlainMessage<TextResult> | undefined, b: TextResult | PlainMessage<TextResult> | undefined): boolean;
|
|
203
|
-
}
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* Describes the message liquidmetal.v1alpha1.TextResult.
|
|
190
|
+
* Use `create(TextResultSchema)` to create a new message.
|
|
191
|
+
*/
|
|
192
|
+
export declare const TextResultSchema: GenMessage<TextResult>;
|
|
204
193
|
/**
|
|
205
194
|
* PaginationInfo provides detailed pagination metadata for implementing
|
|
206
195
|
* UI controls and managing result navigation. Supports both traditional
|
|
@@ -208,7 +197,7 @@ export declare class TextResult extends Message<TextResult> {
|
|
|
208
197
|
*
|
|
209
198
|
* @generated from message liquidmetal.v1alpha1.PaginationInfo
|
|
210
199
|
*/
|
|
211
|
-
export
|
|
200
|
+
export type PaginationInfo = Message<"liquidmetal.v1alpha1.PaginationInfo"> & {
|
|
212
201
|
/**
|
|
213
202
|
* Total number of available results
|
|
214
203
|
*
|
|
@@ -242,22 +231,19 @@ export declare class PaginationInfo extends Message<PaginationInfo> {
|
|
|
242
231
|
* @generated from field: bool has_more = 5;
|
|
243
232
|
*/
|
|
244
233
|
hasMore: boolean;
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaginationInfo;
|
|
252
|
-
static equals(a: PaginationInfo | PlainMessage<PaginationInfo> | undefined, b: PaginationInfo | PlainMessage<PaginationInfo> | undefined): boolean;
|
|
253
|
-
}
|
|
234
|
+
};
|
|
235
|
+
/**
|
|
236
|
+
* Describes the message liquidmetal.v1alpha1.PaginationInfo.
|
|
237
|
+
* Use `create(PaginationInfoSchema)` to create a new message.
|
|
238
|
+
*/
|
|
239
|
+
export declare const PaginationInfoSchema: GenMessage<PaginationInfo>;
|
|
254
240
|
/**
|
|
255
241
|
* CreatePageSummaryRequest requests an AI-generated summary of search results
|
|
256
242
|
* for a specific page. Helps users quickly understand large result sets.
|
|
257
243
|
*
|
|
258
244
|
* @generated from message liquidmetal.v1alpha1.CreatePageSummaryRequest
|
|
259
245
|
*/
|
|
260
|
-
export
|
|
246
|
+
export type CreatePageSummaryRequest = Message<"liquidmetal.v1alpha1.CreatePageSummaryRequest"> & {
|
|
261
247
|
/**
|
|
262
248
|
* Target page number (1-based)
|
|
263
249
|
*
|
|
@@ -277,22 +263,19 @@ export declare class CreatePageSummaryRequest extends Message<CreatePageSummaryR
|
|
|
277
263
|
* @generated from field: string request_id = 3;
|
|
278
264
|
*/
|
|
279
265
|
requestId: string;
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePageSummaryRequest;
|
|
287
|
-
static equals(a: CreatePageSummaryRequest | PlainMessage<CreatePageSummaryRequest> | undefined, b: CreatePageSummaryRequest | PlainMessage<CreatePageSummaryRequest> | undefined): boolean;
|
|
288
|
-
}
|
|
266
|
+
};
|
|
267
|
+
/**
|
|
268
|
+
* Describes the message liquidmetal.v1alpha1.CreatePageSummaryRequest.
|
|
269
|
+
* Use `create(CreatePageSummaryRequestSchema)` to create a new message.
|
|
270
|
+
*/
|
|
271
|
+
export declare const CreatePageSummaryRequestSchema: GenMessage<CreatePageSummaryRequest>;
|
|
289
272
|
/**
|
|
290
273
|
* CreatePageSummaryResponse provides an AI-generated overview of the
|
|
291
274
|
* search results page, highlighting key themes and patterns.
|
|
292
275
|
*
|
|
293
276
|
* @generated from message liquidmetal.v1alpha1.CreatePageSummaryResponse
|
|
294
277
|
*/
|
|
295
|
-
export
|
|
278
|
+
export type CreatePageSummaryResponse = Message<"liquidmetal.v1alpha1.CreatePageSummaryResponse"> & {
|
|
296
279
|
/**
|
|
297
280
|
* AI-generated summary including:
|
|
298
281
|
* - Key themes and topics
|
|
@@ -303,15 +286,12 @@ export declare class CreatePageSummaryResponse extends Message<CreatePageSummary
|
|
|
303
286
|
* @generated from field: string summary = 1;
|
|
304
287
|
*/
|
|
305
288
|
summary: string;
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePageSummaryResponse;
|
|
313
|
-
static equals(a: CreatePageSummaryResponse | PlainMessage<CreatePageSummaryResponse> | undefined, b: CreatePageSummaryResponse | PlainMessage<CreatePageSummaryResponse> | undefined): boolean;
|
|
314
|
-
}
|
|
289
|
+
};
|
|
290
|
+
/**
|
|
291
|
+
* Describes the message liquidmetal.v1alpha1.CreatePageSummaryResponse.
|
|
292
|
+
* Use `create(CreatePageSummaryResponseSchema)` to create a new message.
|
|
293
|
+
*/
|
|
294
|
+
export declare const CreatePageSummaryResponseSchema: GenMessage<CreatePageSummaryResponse>;
|
|
315
295
|
/**
|
|
316
296
|
* RunSupervisorAgentRequest initiates a new semantic search operation
|
|
317
297
|
* using natural language queries. The supervisor coordinates multiple
|
|
@@ -319,7 +299,7 @@ export declare class CreatePageSummaryResponse extends Message<CreatePageSummary
|
|
|
319
299
|
*
|
|
320
300
|
* @generated from message liquidmetal.v1alpha1.RunSupervisorAgentRequest
|
|
321
301
|
*/
|
|
322
|
-
export
|
|
302
|
+
export type RunSupervisorAgentRequest = Message<"liquidmetal.v1alpha1.RunSupervisorAgentRequest"> & {
|
|
323
303
|
/**
|
|
324
304
|
* Natural language search query
|
|
325
305
|
* Can include complex criteria
|
|
@@ -341,22 +321,19 @@ export declare class RunSupervisorAgentRequest extends Message<RunSupervisorAgen
|
|
|
341
321
|
* @generated from field: repeated string bucket_ids = 3;
|
|
342
322
|
*/
|
|
343
323
|
bucketIds: string[];
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunSupervisorAgentRequest;
|
|
351
|
-
static equals(a: RunSupervisorAgentRequest | PlainMessage<RunSupervisorAgentRequest> | undefined, b: RunSupervisorAgentRequest | PlainMessage<RunSupervisorAgentRequest> | undefined): boolean;
|
|
352
|
-
}
|
|
324
|
+
};
|
|
325
|
+
/**
|
|
326
|
+
* Describes the message liquidmetal.v1alpha1.RunSupervisorAgentRequest.
|
|
327
|
+
* Use `create(RunSupervisorAgentRequestSchema)` to create a new message.
|
|
328
|
+
*/
|
|
329
|
+
export declare const RunSupervisorAgentRequestSchema: GenMessage<RunSupervisorAgentRequest>;
|
|
353
330
|
/**
|
|
354
331
|
* RunSupervisorAgentResponse provides the initial set of search results
|
|
355
332
|
* along with pagination information for result navigation.
|
|
356
333
|
*
|
|
357
334
|
* @generated from message liquidmetal.v1alpha1.RunSupervisorAgentResponse
|
|
358
335
|
*/
|
|
359
|
-
export
|
|
336
|
+
export type RunSupervisorAgentResponse = Message<"liquidmetal.v1alpha1.RunSupervisorAgentResponse"> & {
|
|
360
337
|
/**
|
|
361
338
|
* Matched results with metadata
|
|
362
339
|
*
|
|
@@ -369,22 +346,19 @@ export declare class RunSupervisorAgentResponse extends Message<RunSupervisorAge
|
|
|
369
346
|
* @generated from field: liquidmetal.v1alpha1.PaginationInfo pagination = 2;
|
|
370
347
|
*/
|
|
371
348
|
pagination?: PaginationInfo;
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunSupervisorAgentResponse;
|
|
379
|
-
static equals(a: RunSupervisorAgentResponse | PlainMessage<RunSupervisorAgentResponse> | undefined, b: RunSupervisorAgentResponse | PlainMessage<RunSupervisorAgentResponse> | undefined): boolean;
|
|
380
|
-
}
|
|
349
|
+
};
|
|
350
|
+
/**
|
|
351
|
+
* Describes the message liquidmetal.v1alpha1.RunSupervisorAgentResponse.
|
|
352
|
+
* Use `create(RunSupervisorAgentResponseSchema)` to create a new message.
|
|
353
|
+
*/
|
|
354
|
+
export declare const RunSupervisorAgentResponseSchema: GenMessage<RunSupervisorAgentResponse>;
|
|
381
355
|
/**
|
|
382
356
|
* GetPaginatedResultsRequest retrieves additional pages from a previous
|
|
383
357
|
* search operation. Maintains result consistency across pages.
|
|
384
358
|
*
|
|
385
359
|
* @generated from message liquidmetal.v1alpha1.GetPaginatedResultsRequest
|
|
386
360
|
*/
|
|
387
|
-
export
|
|
361
|
+
export type GetPaginatedResultsRequest = Message<"liquidmetal.v1alpha1.GetPaginatedResultsRequest"> & {
|
|
388
362
|
/**
|
|
389
363
|
* Original search session identifier
|
|
390
364
|
*
|
|
@@ -403,22 +377,19 @@ export declare class GetPaginatedResultsRequest extends Message<GetPaginatedResu
|
|
|
403
377
|
* @generated from field: optional int32 page_size = 3;
|
|
404
378
|
*/
|
|
405
379
|
pageSize?: number;
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPaginatedResultsRequest;
|
|
413
|
-
static equals(a: GetPaginatedResultsRequest | PlainMessage<GetPaginatedResultsRequest> | undefined, b: GetPaginatedResultsRequest | PlainMessage<GetPaginatedResultsRequest> | undefined): boolean;
|
|
414
|
-
}
|
|
380
|
+
};
|
|
381
|
+
/**
|
|
382
|
+
* Describes the message liquidmetal.v1alpha1.GetPaginatedResultsRequest.
|
|
383
|
+
* Use `create(GetPaginatedResultsRequestSchema)` to create a new message.
|
|
384
|
+
*/
|
|
385
|
+
export declare const GetPaginatedResultsRequestSchema: GenMessage<GetPaginatedResultsRequest>;
|
|
415
386
|
/**
|
|
416
387
|
* GetPaginatedResultsResponse provides the requested page of results
|
|
417
388
|
* with updated pagination information.
|
|
418
389
|
*
|
|
419
390
|
* @generated from message liquidmetal.v1alpha1.GetPaginatedResultsResponse
|
|
420
391
|
*/
|
|
421
|
-
export
|
|
392
|
+
export type GetPaginatedResultsResponse = Message<"liquidmetal.v1alpha1.GetPaginatedResultsResponse"> & {
|
|
422
393
|
/**
|
|
423
394
|
* Page results with full metadata
|
|
424
395
|
*
|
|
@@ -431,22 +402,19 @@ export declare class GetPaginatedResultsResponse extends Message<GetPaginatedRes
|
|
|
431
402
|
* @generated from field: liquidmetal.v1alpha1.PaginationInfo pagination = 2;
|
|
432
403
|
*/
|
|
433
404
|
pagination?: PaginationInfo;
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPaginatedResultsResponse;
|
|
441
|
-
static equals(a: GetPaginatedResultsResponse | PlainMessage<GetPaginatedResultsResponse> | undefined, b: GetPaginatedResultsResponse | PlainMessage<GetPaginatedResultsResponse> | undefined): boolean;
|
|
442
|
-
}
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* Describes the message liquidmetal.v1alpha1.GetPaginatedResultsResponse.
|
|
408
|
+
* Use `create(GetPaginatedResultsResponseSchema)` to create a new message.
|
|
409
|
+
*/
|
|
410
|
+
export declare const GetPaginatedResultsResponseSchema: GenMessage<GetPaginatedResultsResponse>;
|
|
443
411
|
/**
|
|
444
412
|
* RegisterRetrieverToolRequest registers a new custom retriever endpoint
|
|
445
413
|
* for a specific bucket. Enables specialized search implementations.
|
|
446
414
|
*
|
|
447
415
|
* @generated from message liquidmetal.v1alpha1.RegisterRetrieverToolRequest
|
|
448
416
|
*/
|
|
449
|
-
export
|
|
417
|
+
export type RegisterRetrieverToolRequest = Message<"liquidmetal.v1alpha1.RegisterRetrieverToolRequest"> & {
|
|
450
418
|
/**
|
|
451
419
|
* Target bucket identifier
|
|
452
420
|
*
|
|
@@ -471,35 +439,187 @@ export declare class RegisterRetrieverToolRequest extends Message<RegisterRetrie
|
|
|
471
439
|
* @generated from field: string bucket_name = 4;
|
|
472
440
|
*/
|
|
473
441
|
bucketName: string;
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RegisterRetrieverToolRequest;
|
|
481
|
-
static equals(a: RegisterRetrieverToolRequest | PlainMessage<RegisterRetrieverToolRequest> | undefined, b: RegisterRetrieverToolRequest | PlainMessage<RegisterRetrieverToolRequest> | undefined): boolean;
|
|
482
|
-
}
|
|
442
|
+
};
|
|
443
|
+
/**
|
|
444
|
+
* Describes the message liquidmetal.v1alpha1.RegisterRetrieverToolRequest.
|
|
445
|
+
* Use `create(RegisterRetrieverToolRequestSchema)` to create a new message.
|
|
446
|
+
*/
|
|
447
|
+
export declare const RegisterRetrieverToolRequestSchema: GenMessage<RegisterRetrieverToolRequest>;
|
|
483
448
|
/**
|
|
484
449
|
* RegisterRetrieverToolResponse confirms the registration status
|
|
485
450
|
* of the custom retriever tool.
|
|
486
451
|
*
|
|
487
452
|
* @generated from message liquidmetal.v1alpha1.RegisterRetrieverToolResponse
|
|
488
453
|
*/
|
|
489
|
-
export
|
|
454
|
+
export type RegisterRetrieverToolResponse = Message<"liquidmetal.v1alpha1.RegisterRetrieverToolResponse"> & {
|
|
490
455
|
/**
|
|
491
456
|
* Registration status message
|
|
492
457
|
*
|
|
493
458
|
* @generated from field: string message = 1;
|
|
494
459
|
*/
|
|
495
460
|
message: string;
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
461
|
+
};
|
|
462
|
+
/**
|
|
463
|
+
* Describes the message liquidmetal.v1alpha1.RegisterRetrieverToolResponse.
|
|
464
|
+
* Use `create(RegisterRetrieverToolResponseSchema)` to create a new message.
|
|
465
|
+
*/
|
|
466
|
+
export declare const RegisterRetrieverToolResponseSchema: GenMessage<RegisterRetrieverToolResponse>;
|
|
467
|
+
/**
|
|
468
|
+
* SearchAgentService provides the core functionality for Smart Buckets - Raindrop's intelligent
|
|
469
|
+
* object storage service designed specifically for AI applications. When files are uploaded
|
|
470
|
+
* to a Smart Bucket, they undergo advanced AI decomposition that analyzes and indexes content
|
|
471
|
+
* using state-of-the-art AI models. This includes:
|
|
472
|
+
*
|
|
473
|
+
* - Automated document indexing and processing
|
|
474
|
+
* - Extraction of structured data
|
|
475
|
+
* - Processing through specialized AI models
|
|
476
|
+
* - Storage in optimized formats for AI querying
|
|
477
|
+
* - Automatic PII detection and classification
|
|
478
|
+
*
|
|
479
|
+
* The service supports multiple file types including:
|
|
480
|
+
* - application/pdf
|
|
481
|
+
* - image/jpeg, image/png
|
|
482
|
+
* - audio/webm, audio/wav, audio/mp4, audio/mpeg
|
|
483
|
+
* - text/plain
|
|
484
|
+
*
|
|
485
|
+
* @generated from service liquidmetal.v1alpha1.SearchAgentService
|
|
486
|
+
*/
|
|
487
|
+
export declare const SearchAgentService: GenService<{
|
|
488
|
+
/**
|
|
489
|
+
* DocumentChat enables natural conversational interactions with documents stored in Smart Buckets.
|
|
490
|
+
* This creates an intelligent interface for document exploration through natural dialogue, allowing
|
|
491
|
+
* users to ask questions, request summaries, and extract insights from any supported document type.
|
|
492
|
+
*
|
|
493
|
+
* The chat system maintains conversation context, enabling follow-up questions and deep exploration
|
|
494
|
+
* of document content. It works across all supported file types and automatically handles multi-page
|
|
495
|
+
* documents, making complex document interaction as simple as having a conversation.
|
|
496
|
+
*
|
|
497
|
+
* The system will:
|
|
498
|
+
* - Maintain conversation history for context
|
|
499
|
+
* - Process questions against document content
|
|
500
|
+
* - Generate contextual, relevant responses
|
|
501
|
+
* - Handle document references and citations
|
|
502
|
+
* - Support multi-turn conversations about document content
|
|
503
|
+
*
|
|
504
|
+
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.DocumentChat
|
|
505
|
+
*/
|
|
506
|
+
documentChat: {
|
|
507
|
+
methodKind: "unary";
|
|
508
|
+
input: typeof DocumentChatRequestSchema;
|
|
509
|
+
output: typeof DocumentChatResponseSchema;
|
|
510
|
+
};
|
|
511
|
+
/**
|
|
512
|
+
* RagSearch (Retrieval-Augmented Generation) provides an advanced search capability that serves
|
|
513
|
+
* as a complete drop-in replacement for traditional RAG pipelines. This system enables AI agents
|
|
514
|
+
* to leverage private data stored in Smart Buckets with zero additional configuration.
|
|
515
|
+
*
|
|
516
|
+
* The RAG system automatically:
|
|
517
|
+
* - Processes and indexes uploaded content
|
|
518
|
+
* - Maintains optimal chunk sizes (max 450 tokens)
|
|
519
|
+
* - Handles document metadata
|
|
520
|
+
* - Provides relevance scoring
|
|
521
|
+
* - Manages document versioning
|
|
522
|
+
*
|
|
523
|
+
* This creates a foundation for:
|
|
524
|
+
* - Training AI models with private data
|
|
525
|
+
* - Building intelligent knowledge bases
|
|
526
|
+
* - Creating context-aware chatbots
|
|
527
|
+
* - Implementing semantic search systems
|
|
528
|
+
*
|
|
529
|
+
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RagSearch
|
|
530
|
+
*/
|
|
531
|
+
ragSearch: {
|
|
532
|
+
methodKind: "unary";
|
|
533
|
+
input: typeof RagSearchRequestSchema;
|
|
534
|
+
output: typeof RagSearchResponseSchema;
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* CreatePageSummary generates intelligent summaries of search result pages, helping users
|
|
538
|
+
* quickly understand large result sets without reading through every document. The system
|
|
539
|
+
* analyzes the content of all results on a given page and generates a comprehensive overview.
|
|
540
|
+
*
|
|
541
|
+
* The summary system:
|
|
542
|
+
* - Identifies key themes and topics
|
|
543
|
+
* - Extracts important findings
|
|
544
|
+
* - Highlights document relationships
|
|
545
|
+
* - Provides content type distribution
|
|
546
|
+
* - Summarizes metadata patterns
|
|
547
|
+
*
|
|
548
|
+
* This is particularly valuable when dealing with:
|
|
549
|
+
* - Large document collections
|
|
550
|
+
* - Mixed content types
|
|
551
|
+
* - Technical documentation
|
|
552
|
+
* - Research materials
|
|
553
|
+
*
|
|
554
|
+
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.CreatePageSummary
|
|
555
|
+
*/
|
|
556
|
+
createPageSummary: {
|
|
557
|
+
methodKind: "unary";
|
|
558
|
+
input: typeof CreatePageSummaryRequestSchema;
|
|
559
|
+
output: typeof CreatePageSummaryResponseSchema;
|
|
560
|
+
};
|
|
561
|
+
/**
|
|
562
|
+
* RunSupervisorAgent is the primary search interface for Smart Buckets, providing
|
|
563
|
+
* advanced semantic search capabilities that go far beyond traditional keyword matching.
|
|
564
|
+
* The supervisor agent orchestrates multiple specialized search strategies to provide
|
|
565
|
+
* comprehensive, intelligent results.
|
|
566
|
+
*
|
|
567
|
+
* The system supports complex queries like:
|
|
568
|
+
* - "Show me documents containing credit card numbers or social security numbers"
|
|
569
|
+
* - "Find images of landscapes taken during sunset"
|
|
570
|
+
* - "Get documents mentioning revenue forecasts from Q4 2023"
|
|
571
|
+
* - "Find me all PDF documents that contain pictures of a cat"
|
|
572
|
+
*
|
|
573
|
+
* Key capabilities:
|
|
574
|
+
* - Natural language query understanding
|
|
575
|
+
* - Content-based search across text and images
|
|
576
|
+
* - Automatic PII detection and filtering
|
|
577
|
+
* - Cross-document relationship analysis
|
|
578
|
+
* - Multi-modal search (text, images, audio)
|
|
579
|
+
*
|
|
580
|
+
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RunSupervisorAgent
|
|
581
|
+
*/
|
|
582
|
+
runSupervisorAgent: {
|
|
583
|
+
methodKind: "unary";
|
|
584
|
+
input: typeof RunSupervisorAgentRequestSchema;
|
|
585
|
+
output: typeof RunSupervisorAgentResponseSchema;
|
|
586
|
+
};
|
|
587
|
+
/**
|
|
588
|
+
* GetPaginatedResults enables efficient navigation through large result sets while
|
|
589
|
+
* maintaining search context and result relevance. This method is optimized for
|
|
590
|
+
* handling large document collections and implementing modern UI patterns.
|
|
591
|
+
*
|
|
592
|
+
* Features:
|
|
593
|
+
* - Consistent result ordering
|
|
594
|
+
* - Configurable page sizes
|
|
595
|
+
* - Efficient result caching
|
|
596
|
+
* - Cursor-based pagination
|
|
597
|
+
* - Support for infinite scroll
|
|
598
|
+
*
|
|
599
|
+
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.GetPaginatedResults
|
|
600
|
+
*/
|
|
601
|
+
getPaginatedResults: {
|
|
602
|
+
methodKind: "unary";
|
|
603
|
+
input: typeof GetPaginatedResultsRequestSchema;
|
|
604
|
+
output: typeof GetPaginatedResultsResponseSchema;
|
|
605
|
+
};
|
|
606
|
+
/**
|
|
607
|
+
* RegisterRetrieverTool allows extending Smart Bucket capabilities with custom
|
|
608
|
+
* retrieval implementations. This enables specialized search algorithms and
|
|
609
|
+
* custom processing pipelines for specific use cases or data types.
|
|
610
|
+
*
|
|
611
|
+
* Use cases include:
|
|
612
|
+
* - Custom search implementations
|
|
613
|
+
* - Specialized retrieval algorithms
|
|
614
|
+
* - Domain-specific optimizations
|
|
615
|
+
* - Integration with existing systems
|
|
616
|
+
*
|
|
617
|
+
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RegisterRetrieverTool
|
|
618
|
+
*/
|
|
619
|
+
registerRetrieverTool: {
|
|
620
|
+
methodKind: "unary";
|
|
621
|
+
input: typeof RegisterRetrieverToolRequestSchema;
|
|
622
|
+
output: typeof RegisterRetrieverToolResponseSchema;
|
|
623
|
+
};
|
|
624
|
+
}>;
|
|
505
625
|
//# sourceMappingURL=search_agent_pb.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search_agent_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/search_agent_pb.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"search_agent_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/search_agent_pb.ts"],"names":[],"mappings":"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"}
|