@liquidmetal-ai/drizzle 0.4.0 → 0.4.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.
- package/CHANGELOG.md +6 -0
- package/dist/liquidmetal/v1alpha1/bucket_name_pb.d.ts +23 -0
- package/dist/liquidmetal/v1alpha1/bucket_name_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/bucket_name_pb.js +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +125 -0
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +42 -2
- package/dist/liquidmetal/v1alpha1/object_pb.d.ts +74 -1
- package/dist/liquidmetal/v1alpha1/object_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/object_pb.js +5 -2
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/rainbow_auth_pb.js +1 -1
- package/dist/liquidmetal/v1alpha1/raindrop_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/raindrop_pb.js +1 -1
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts +125 -175
- package/dist/liquidmetal/v1alpha1/search_agent_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/search_agent_pb.js +5 -17
- package/package.json +1 -1
- package/src/liquidmetal/v1alpha1/bucket_name_pb.ts +24 -1
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +158 -2
- package/src/liquidmetal/v1alpha1/object_pb.ts +75 -2
- package/src/liquidmetal/v1alpha1/rainbow_auth_pb.ts +1 -1
- package/src/liquidmetal/v1alpha1/raindrop_pb.ts +1 -1
- package/src/liquidmetal/v1alpha1/search_agent_pb.ts +126 -176
- package/.turbo/turbo-build.log +0 -30
- package/.turbo/turbo-lint.log +0 -6
- package/.turbo/turbo-test.log +0 -242
|
@@ -6,37 +6,37 @@ import type { Message } from "@bufbuild/protobuf";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare const file_liquidmetal_v1alpha1_search_agent: GenFile;
|
|
8
8
|
/**
|
|
9
|
-
* DocumentChatRequest initiates or continues a conversation about a specific document.
|
|
10
|
-
* The system maintains conversation context for natural, flowing dialogue about
|
|
11
|
-
* document content.
|
|
12
|
-
*
|
|
13
9
|
* @generated from message liquidmetal.v1alpha1.DocumentChatRequest
|
|
14
10
|
*/
|
|
15
11
|
export type DocumentChatRequest = Message<"liquidmetal.v1alpha1.DocumentChatRequest"> & {
|
|
16
12
|
/**
|
|
17
|
-
* The storage bucket containing the target document
|
|
18
|
-
*
|
|
13
|
+
* __DESCRIPTION__ The storage bucket containing the target document. Must be a valid, registered Smart Bucket. Used to identify which bucket to query against
|
|
14
|
+
* __EXAMPLE__ {"bucket": {"name": "my-bucket", "version": "01jtgtraw3b5qbahrhvrj3ygbb", "applicationName": "my-app"}}
|
|
15
|
+
* __REQUIRED__ TRUE
|
|
19
16
|
*
|
|
20
17
|
* @generated from field: liquidmetal.v1alpha1.BucketLocator bucket_location = 1;
|
|
21
18
|
*/
|
|
22
19
|
bucketLocation?: BucketLocator;
|
|
23
20
|
/**
|
|
24
|
-
* Document identifier within the bucket
|
|
25
|
-
*
|
|
21
|
+
* __DESCRIPTION__ Document identifier within the bucket. Typically matches the storage path or key. Used to identify which document to chat with
|
|
22
|
+
* __EXAMPLE__ "document.pdf"
|
|
23
|
+
* __REQUIRED__ TRUE
|
|
26
24
|
*
|
|
27
25
|
* @generated from field: string object_id = 2;
|
|
28
26
|
*/
|
|
29
27
|
objectId: string;
|
|
30
28
|
/**
|
|
31
|
-
* User's input or question about the document
|
|
32
|
-
*
|
|
29
|
+
* __DESCRIPTION__ User's input or question about the document. Can be natural language questions, commands, or requests. The system will process this against the document content
|
|
30
|
+
* __EXAMPLE__ "What are the key points in this document?"
|
|
31
|
+
* __REQUIRED__ TRUE
|
|
33
32
|
*
|
|
34
33
|
* @generated from field: string input = 3;
|
|
35
34
|
*/
|
|
36
35
|
input: string;
|
|
37
36
|
/**
|
|
38
|
-
*
|
|
39
|
-
*
|
|
37
|
+
* __DESCRIPTION__ Client-provided conversation session identifier. Required for maintaining context in follow-up questions. We recommend using a UUID or ULID for this value
|
|
38
|
+
* __EXAMPLE__ "123e4567-e89b-12d3-a456-426614174000"
|
|
39
|
+
* __REQUIRED__ TRUE
|
|
40
40
|
*
|
|
41
41
|
* @generated from field: string request_id = 4;
|
|
42
42
|
*/
|
|
@@ -56,20 +56,12 @@ export type DocumentChatRequest = Message<"liquidmetal.v1alpha1.DocumentChatRequ
|
|
|
56
56
|
*/
|
|
57
57
|
export declare const DocumentChatRequestSchema: GenMessage<DocumentChatRequest>;
|
|
58
58
|
/**
|
|
59
|
-
* DocumentChatResponse contains the AI's response based on document content
|
|
60
|
-
* and conversation context. Responses are generated considering both the
|
|
61
|
-
* current question and previous conversation history.
|
|
62
|
-
*
|
|
63
59
|
* @generated from message liquidmetal.v1alpha1.DocumentChatResponse
|
|
64
60
|
*/
|
|
65
61
|
export type DocumentChatResponse = Message<"liquidmetal.v1alpha1.DocumentChatResponse"> & {
|
|
66
62
|
/**
|
|
67
|
-
* AI-generated response that may include
|
|
68
|
-
*
|
|
69
|
-
* - Content summaries
|
|
70
|
-
* - Contextual explanations
|
|
71
|
-
* - References to specific sections
|
|
72
|
-
* - Related content suggestions
|
|
63
|
+
* __DESCRIPTION__ AI-generated response that may include direct document quotes, content summaries, contextual explanations, references to specific sections, and related content suggestions
|
|
64
|
+
* __EXAMPLE__ "Based on the document, the key points are..."
|
|
73
65
|
*
|
|
74
66
|
* @generated from field: string answer = 1;
|
|
75
67
|
*/
|
|
@@ -81,30 +73,29 @@ export type DocumentChatResponse = Message<"liquidmetal.v1alpha1.DocumentChatRes
|
|
|
81
73
|
*/
|
|
82
74
|
export declare const DocumentChatResponseSchema: GenMessage<DocumentChatResponse>;
|
|
83
75
|
/**
|
|
84
|
-
* RagSearchRequest enables semantic search across document collections using
|
|
85
|
-
* natural language queries. The system automatically optimizes the search
|
|
86
|
-
* strategy based on the query content.
|
|
87
|
-
*
|
|
88
76
|
* @generated from message liquidmetal.v1alpha1.RagSearchRequest
|
|
89
77
|
*/
|
|
90
78
|
export type RagSearchRequest = Message<"liquidmetal.v1alpha1.RagSearchRequest"> & {
|
|
91
79
|
/**
|
|
92
|
-
* Natural language query or question
|
|
93
|
-
*
|
|
80
|
+
* __DESCRIPTION__ Natural language query or question. Can include complex criteria and relationships. The system will optimize the search strategy based on this input
|
|
81
|
+
* __EXAMPLE__ "Find documents about revenue in Q4 2023"
|
|
82
|
+
* __REQUIRED__ TRUE
|
|
94
83
|
*
|
|
95
84
|
* @generated from field: string input = 1;
|
|
96
85
|
*/
|
|
97
86
|
input: string;
|
|
98
87
|
/**
|
|
99
|
-
*
|
|
100
|
-
*
|
|
88
|
+
* __DESCRIPTION__ Client-provided search session identifier. Required for pagination and result tracking. We recommend using a UUID or ULID for this value
|
|
89
|
+
* __EXAMPLE__ "123e4567-e89b-12d3-a456-426614174000"
|
|
90
|
+
* __REQUIRED__ TRUE
|
|
101
91
|
*
|
|
102
92
|
* @generated from field: string request_id = 2;
|
|
103
93
|
*/
|
|
104
94
|
requestId: string;
|
|
105
95
|
/**
|
|
106
|
-
*
|
|
107
|
-
*
|
|
96
|
+
* __DESCRIPTION__ The buckets to search. If provided, the search will only return results from these buckets
|
|
97
|
+
* __EXAMPLE__ [{"bucket": {"name": "my-bucket", "version": "01jtgtraw3b5qbahrhvrj3ygbb", "applicationName": "my-app"}}]
|
|
98
|
+
* __REQUIRED__ TRUE
|
|
108
99
|
*
|
|
109
100
|
* @generated from field: repeated liquidmetal.v1alpha1.BucketLocator bucket_locations = 3;
|
|
110
101
|
*/
|
|
@@ -124,16 +115,12 @@ export type RagSearchRequest = Message<"liquidmetal.v1alpha1.RagSearchRequest">
|
|
|
124
115
|
*/
|
|
125
116
|
export declare const RagSearchRequestSchema: GenMessage<RagSearchRequest>;
|
|
126
117
|
/**
|
|
127
|
-
* RagSearchResponse provides semantically relevant results with metadata
|
|
128
|
-
* and relevance scoring. Results are automatically filtered for PII
|
|
129
|
-
* and ranked by relevance.
|
|
130
|
-
*
|
|
131
118
|
* @generated from message liquidmetal.v1alpha1.RagSearchResponse
|
|
132
119
|
*/
|
|
133
120
|
export type RagSearchResponse = Message<"liquidmetal.v1alpha1.RagSearchResponse"> & {
|
|
134
121
|
/**
|
|
135
|
-
* Ordered list of relevant text segments
|
|
136
|
-
*
|
|
122
|
+
* __DESCRIPTION__ Ordered list of relevant text segments. Each result includes full context and metadata
|
|
123
|
+
* __EXAMPLE__ [{"chunkSignature": "chunk_123abc", "text": "Sample text", "score": 0.95}]
|
|
137
124
|
*
|
|
138
125
|
* @generated from field: repeated liquidmetal.v1alpha1.TextResult results = 1;
|
|
139
126
|
*/
|
|
@@ -149,13 +136,15 @@ export declare const RagSearchResponseSchema: GenMessage<RagSearchResponse>;
|
|
|
149
136
|
*/
|
|
150
137
|
export type SourceResult = Message<"liquidmetal.v1alpha1.SourceResult"> & {
|
|
151
138
|
/**
|
|
152
|
-
* The bucket information containing this result
|
|
139
|
+
* __DESCRIPTION__ The bucket information containing this result
|
|
140
|
+
* __EXAMPLE__ {"moduleId": "01jt3vs2nyt2xwk2f54x2bkn84", "bucketName": "mr-bucket"}
|
|
153
141
|
*
|
|
154
142
|
* @generated from field: liquidmetal.v1alpha1.BucketResponse bucket = 1;
|
|
155
143
|
*/
|
|
156
144
|
bucket?: BucketResponse;
|
|
157
145
|
/**
|
|
158
|
-
* The object key within the bucket
|
|
146
|
+
* __DESCRIPTION__ The object key within the bucket
|
|
147
|
+
* __EXAMPLE__ "document.pdf"
|
|
159
148
|
*
|
|
160
149
|
* @generated from field: string object = 2;
|
|
161
150
|
*/
|
|
@@ -167,59 +156,54 @@ export type SourceResult = Message<"liquidmetal.v1alpha1.SourceResult"> & {
|
|
|
167
156
|
*/
|
|
168
157
|
export declare const SourceResultSchema: GenMessage<SourceResult>;
|
|
169
158
|
/**
|
|
170
|
-
* TextResult represents a single search result with comprehensive metadata
|
|
171
|
-
* and relevance information. This structure provides all necessary context
|
|
172
|
-
* for understanding and displaying the result.
|
|
173
|
-
*
|
|
174
159
|
* @generated from message liquidmetal.v1alpha1.TextResult
|
|
175
160
|
*/
|
|
176
161
|
export type TextResult = Message<"liquidmetal.v1alpha1.TextResult"> & {
|
|
177
162
|
/**
|
|
178
|
-
* Unique identifier for this text segment
|
|
179
|
-
*
|
|
163
|
+
* __DESCRIPTION__ Unique identifier for this text segment. Used for deduplication and result tracking
|
|
164
|
+
* __EXAMPLE__ "51abb575a5e438a2db5fa064611995dfd76aa14d9e4b2a44c29a6374203126a5"
|
|
180
165
|
*
|
|
181
166
|
* @generated from field: optional string chunk_signature = 1;
|
|
182
167
|
*/
|
|
183
168
|
chunkSignature?: string;
|
|
184
169
|
/**
|
|
185
|
-
* The actual content of the result
|
|
186
|
-
*
|
|
170
|
+
* __DESCRIPTION__ The actual content of the result. May be a document excerpt or full content
|
|
171
|
+
* __EXAMPLE__ "This is a sample text chunk from the document"
|
|
187
172
|
*
|
|
188
173
|
* @generated from field: optional string text = 2;
|
|
189
174
|
*/
|
|
190
175
|
text?: string;
|
|
191
176
|
/**
|
|
192
|
-
*
|
|
193
|
-
*
|
|
194
|
-
* Multiple sources may be provided for results aggregated across documents
|
|
177
|
+
* __DESCRIPTION__ Source document references. Contains bucket and object information
|
|
178
|
+
* __EXAMPLE__ {"bucket": {"moduleId": "01jt3vs2nyt2xwk2f54x2bkn84", "bucketName": "mr-bucket"}, "object": "document.pdf"}
|
|
195
179
|
*
|
|
196
180
|
* @generated from field: liquidmetal.v1alpha1.SourceResult source = 3;
|
|
197
181
|
*/
|
|
198
182
|
source?: SourceResult;
|
|
199
183
|
/**
|
|
200
|
-
* Parent document identifier
|
|
201
|
-
*
|
|
184
|
+
* __DESCRIPTION__ Parent document identifier. Links related content chunks together
|
|
185
|
+
* __EXAMPLE__ "e2ec3b118e205ff5d627e0c866224a25ba52e6d3ab758a3ef3d49e80908d7444"
|
|
202
186
|
*
|
|
203
187
|
* @generated from field: optional string payload_signature = 4;
|
|
204
188
|
*/
|
|
205
189
|
payloadSignature?: string;
|
|
206
190
|
/**
|
|
207
|
-
* Relevance score (0.0 to 1.0)
|
|
208
|
-
*
|
|
191
|
+
* __DESCRIPTION__ Relevance score (0.0 to 1.0). Higher scores indicate better matches
|
|
192
|
+
* __EXAMPLE__ 0.95
|
|
209
193
|
*
|
|
210
194
|
* @generated from field: optional double score = 5;
|
|
211
195
|
*/
|
|
212
196
|
score?: number;
|
|
213
197
|
/**
|
|
214
|
-
* Vector representation for similarity matching
|
|
215
|
-
*
|
|
198
|
+
* __DESCRIPTION__ Vector representation for similarity matching. Used in semantic search operations
|
|
199
|
+
* __EXAMPLE__ "base64_encoded_vector_data"
|
|
216
200
|
*
|
|
217
201
|
* @generated from field: optional string embed = 6;
|
|
218
202
|
*/
|
|
219
203
|
embed?: string;
|
|
220
204
|
/**
|
|
221
|
-
* Content MIME type
|
|
222
|
-
*
|
|
205
|
+
* __DESCRIPTION__ Content MIME type. Helps with proper result rendering
|
|
206
|
+
* __EXAMPLE__ "application/pdf"
|
|
223
207
|
*
|
|
224
208
|
* @generated from field: optional string type = 7;
|
|
225
209
|
*/
|
|
@@ -231,42 +215,40 @@ export type TextResult = Message<"liquidmetal.v1alpha1.TextResult"> & {
|
|
|
231
215
|
*/
|
|
232
216
|
export declare const TextResultSchema: GenMessage<TextResult>;
|
|
233
217
|
/**
|
|
234
|
-
* PaginationInfo provides detailed pagination metadata for implementing
|
|
235
|
-
* UI controls and managing result navigation. Supports both traditional
|
|
236
|
-
* pagination and infinite scroll patterns.
|
|
237
|
-
*
|
|
238
218
|
* @generated from message liquidmetal.v1alpha1.PaginationInfo
|
|
239
219
|
*/
|
|
240
220
|
export type PaginationInfo = Message<"liquidmetal.v1alpha1.PaginationInfo"> & {
|
|
241
221
|
/**
|
|
242
|
-
* Total number of available results
|
|
222
|
+
* __DESCRIPTION__ Total number of available results
|
|
223
|
+
* __EXAMPLE__ 1020
|
|
243
224
|
*
|
|
244
225
|
* @generated from field: int32 total = 1;
|
|
245
226
|
*/
|
|
246
227
|
total: number;
|
|
247
228
|
/**
|
|
248
|
-
* Current page number (1-based)
|
|
229
|
+
* __DESCRIPTION__ Current page number (1-based)
|
|
230
|
+
* __EXAMPLE__ 1
|
|
249
231
|
*
|
|
250
232
|
* @generated from field: int32 page = 2;
|
|
251
233
|
*/
|
|
252
234
|
page: number;
|
|
253
235
|
/**
|
|
254
|
-
* Results per page
|
|
255
|
-
*
|
|
236
|
+
* __DESCRIPTION__ Results per page. May be adjusted for performance
|
|
237
|
+
* __EXAMPLE__ 15
|
|
256
238
|
*
|
|
257
239
|
* @generated from field: int32 page_size = 3;
|
|
258
240
|
*/
|
|
259
241
|
pageSize: number;
|
|
260
242
|
/**
|
|
261
|
-
* Total available pages
|
|
262
|
-
*
|
|
243
|
+
* __DESCRIPTION__ Total available pages. Calculated as ceil(total/pageSize)
|
|
244
|
+
* __EXAMPLE__ 68
|
|
263
245
|
*
|
|
264
246
|
* @generated from field: int32 total_pages = 4;
|
|
265
247
|
*/
|
|
266
248
|
totalPages: number;
|
|
267
249
|
/**
|
|
268
|
-
* Indicates more results available
|
|
269
|
-
*
|
|
250
|
+
* __DESCRIPTION__ Indicates more results available. Used for infinite scroll implementation
|
|
251
|
+
* __EXAMPLE__ true
|
|
270
252
|
*
|
|
271
253
|
* @generated from field: bool has_more = 5;
|
|
272
254
|
*/
|
|
@@ -278,27 +260,29 @@ export type PaginationInfo = Message<"liquidmetal.v1alpha1.PaginationInfo"> & {
|
|
|
278
260
|
*/
|
|
279
261
|
export declare const PaginationInfoSchema: GenMessage<PaginationInfo>;
|
|
280
262
|
/**
|
|
281
|
-
* CreatePageSummaryRequest requests an AI-generated summary of search results
|
|
282
|
-
* for a specific page. Helps users quickly understand large result sets.
|
|
283
|
-
*
|
|
284
263
|
* @generated from message liquidmetal.v1alpha1.CreatePageSummaryRequest
|
|
285
264
|
*/
|
|
286
265
|
export type CreatePageSummaryRequest = Message<"liquidmetal.v1alpha1.CreatePageSummaryRequest"> & {
|
|
287
266
|
/**
|
|
288
|
-
* Target page number (1-based)
|
|
267
|
+
* __DESCRIPTION__ Target page number (1-based)
|
|
268
|
+
* __EXAMPLE__ 1
|
|
269
|
+
* __REQUIRED__ TRUE
|
|
289
270
|
*
|
|
290
271
|
* @generated from field: int32 page = 1;
|
|
291
272
|
*/
|
|
292
273
|
page: number;
|
|
293
274
|
/**
|
|
294
|
-
* Results per page
|
|
295
|
-
*
|
|
275
|
+
* __DESCRIPTION__ Results per page. Affects summary granularity
|
|
276
|
+
* __EXAMPLE__ 10
|
|
277
|
+
* __REQUIRED__ TRUE
|
|
296
278
|
*
|
|
297
279
|
* @generated from field: int32 page_size = 2;
|
|
298
280
|
*/
|
|
299
281
|
pageSize: number;
|
|
300
282
|
/**
|
|
301
|
-
* Original search session identifier
|
|
283
|
+
* __DESCRIPTION__ Original search session identifier from the initial search
|
|
284
|
+
* __EXAMPLE__ "123e4567-e89b-12d3-a456-426614174000"
|
|
285
|
+
* __REQUIRED__ TRUE
|
|
302
286
|
*
|
|
303
287
|
* @generated from field: string request_id = 3;
|
|
304
288
|
*/
|
|
@@ -318,18 +302,12 @@ export type CreatePageSummaryRequest = Message<"liquidmetal.v1alpha1.CreatePageS
|
|
|
318
302
|
*/
|
|
319
303
|
export declare const CreatePageSummaryRequestSchema: GenMessage<CreatePageSummaryRequest>;
|
|
320
304
|
/**
|
|
321
|
-
* CreatePageSummaryResponse provides an AI-generated overview of the
|
|
322
|
-
* search results page, highlighting key themes and patterns.
|
|
323
|
-
*
|
|
324
305
|
* @generated from message liquidmetal.v1alpha1.CreatePageSummaryResponse
|
|
325
306
|
*/
|
|
326
307
|
export type CreatePageSummaryResponse = Message<"liquidmetal.v1alpha1.CreatePageSummaryResponse"> & {
|
|
327
308
|
/**
|
|
328
|
-
* AI-generated summary including
|
|
329
|
-
*
|
|
330
|
-
* - Content type distribution
|
|
331
|
-
* - Important findings
|
|
332
|
-
* - Document relationships
|
|
309
|
+
* __DESCRIPTION__ AI-generated summary including key themes and topics, content type distribution, important findings, and document relationships
|
|
310
|
+
* __EXAMPLE__ "The search results contain information about..."
|
|
333
311
|
*
|
|
334
312
|
* @generated from field: string summary = 1;
|
|
335
313
|
*/
|
|
@@ -341,30 +319,29 @@ export type CreatePageSummaryResponse = Message<"liquidmetal.v1alpha1.CreatePage
|
|
|
341
319
|
*/
|
|
342
320
|
export declare const CreatePageSummaryResponseSchema: GenMessage<CreatePageSummaryResponse>;
|
|
343
321
|
/**
|
|
344
|
-
* RunSupervisorAgentRequest initiates a new semantic search operation
|
|
345
|
-
* using natural language queries. The supervisor coordinates multiple
|
|
346
|
-
* search strategies for comprehensive results.
|
|
347
|
-
*
|
|
348
322
|
* @generated from message liquidmetal.v1alpha1.RunSupervisorAgentRequest
|
|
349
323
|
*/
|
|
350
324
|
export type RunSupervisorAgentRequest = Message<"liquidmetal.v1alpha1.RunSupervisorAgentRequest"> & {
|
|
351
325
|
/**
|
|
352
|
-
* Natural language search query
|
|
353
|
-
*
|
|
326
|
+
* __DESCRIPTION__ Natural language search query that can include complex criteria. Supports queries like finding documents with specific content types, PII, or semantic meaning
|
|
327
|
+
* __EXAMPLE__ "Show me documents containing credit card numbers or social security numbers"
|
|
328
|
+
* __REQUIRED__ TRUE
|
|
354
329
|
*
|
|
355
330
|
* @generated from field: string input = 1;
|
|
356
331
|
*/
|
|
357
332
|
input: string;
|
|
358
333
|
/**
|
|
359
|
-
*
|
|
360
|
-
*
|
|
334
|
+
* __DESCRIPTION__ Client-provided search session identifier. Required for pagination and result tracking. We recommend using a UUID or ULID for this value
|
|
335
|
+
* __EXAMPLE__ "123e4567-e89b-12d3-a456-426614174000"
|
|
336
|
+
* __REQUIRED__ TRUE
|
|
361
337
|
*
|
|
362
338
|
* @generated from field: string request_id = 2;
|
|
363
339
|
*/
|
|
364
340
|
requestId: string;
|
|
365
341
|
/**
|
|
366
|
-
*
|
|
367
|
-
*
|
|
342
|
+
* __DESCRIPTION__ The buckets to search. If provided, the search will only return results from these buckets
|
|
343
|
+
* __EXAMPLE__ [{"bucket": {"name": "my-bucket", "version": "01jtgtraw3b5qbahrhvrj3ygbb", "applicationName": "my-app"}}]
|
|
344
|
+
* __REQUIRED__ TRUE
|
|
368
345
|
*
|
|
369
346
|
* @generated from field: repeated liquidmetal.v1alpha1.BucketLocator bucket_locations = 3;
|
|
370
347
|
*/
|
|
@@ -384,20 +361,19 @@ export type RunSupervisorAgentRequest = Message<"liquidmetal.v1alpha1.RunSupervi
|
|
|
384
361
|
*/
|
|
385
362
|
export declare const RunSupervisorAgentRequestSchema: GenMessage<RunSupervisorAgentRequest>;
|
|
386
363
|
/**
|
|
387
|
-
* RunSupervisorAgentResponse provides the initial set of search results
|
|
388
|
-
* along with pagination information for result navigation.
|
|
389
|
-
*
|
|
390
364
|
* @generated from message liquidmetal.v1alpha1.RunSupervisorAgentResponse
|
|
391
365
|
*/
|
|
392
366
|
export type RunSupervisorAgentResponse = Message<"liquidmetal.v1alpha1.RunSupervisorAgentResponse"> & {
|
|
393
367
|
/**
|
|
394
|
-
* Matched results with metadata
|
|
368
|
+
* __DESCRIPTION__ Matched results with metadata
|
|
369
|
+
* __EXAMPLE__ [{"chunkSignature": "chunk_123abc", "text": "Sample text", "score": 0.95}]
|
|
395
370
|
*
|
|
396
371
|
* @generated from field: repeated liquidmetal.v1alpha1.TextResult results = 1;
|
|
397
372
|
*/
|
|
398
373
|
results: TextResult[];
|
|
399
374
|
/**
|
|
400
|
-
* Pagination details for result navigation
|
|
375
|
+
* __DESCRIPTION__ Pagination details for result navigation
|
|
376
|
+
* __EXAMPLE__ {"total": 100, "page": 1, "pageSize": 10, "totalPages": 10, "hasMore": true}
|
|
401
377
|
*
|
|
402
378
|
* @generated from field: liquidmetal.v1alpha1.PaginationInfo pagination = 2;
|
|
403
379
|
*/
|
|
@@ -409,26 +385,29 @@ export type RunSupervisorAgentResponse = Message<"liquidmetal.v1alpha1.RunSuperv
|
|
|
409
385
|
*/
|
|
410
386
|
export declare const RunSupervisorAgentResponseSchema: GenMessage<RunSupervisorAgentResponse>;
|
|
411
387
|
/**
|
|
412
|
-
* GetPaginatedResultsRequest retrieves additional pages from a previous
|
|
413
|
-
* search operation. Maintains result consistency across pages.
|
|
414
|
-
*
|
|
415
388
|
* @generated from message liquidmetal.v1alpha1.GetPaginatedResultsRequest
|
|
416
389
|
*/
|
|
417
390
|
export type GetPaginatedResultsRequest = Message<"liquidmetal.v1alpha1.GetPaginatedResultsRequest"> & {
|
|
418
391
|
/**
|
|
419
|
-
* Original search session identifier
|
|
392
|
+
* __DESCRIPTION__ Original search session identifier from the initial search
|
|
393
|
+
* __EXAMPLE__ "123e4567-e89b-12d3-a456-426614174000"
|
|
394
|
+
* __REQUIRED__ TRUE
|
|
420
395
|
*
|
|
421
396
|
* @generated from field: string request_id = 1;
|
|
422
397
|
*/
|
|
423
398
|
requestId: string;
|
|
424
399
|
/**
|
|
425
|
-
* Requested page number
|
|
400
|
+
* __DESCRIPTION__ Requested page number
|
|
401
|
+
* __EXAMPLE__ 2
|
|
402
|
+
* __REQUIRED__ TRUE
|
|
426
403
|
*
|
|
427
404
|
* @generated from field: optional int32 page = 2;
|
|
428
405
|
*/
|
|
429
406
|
page?: number;
|
|
430
407
|
/**
|
|
431
|
-
* Results per page
|
|
408
|
+
* __DESCRIPTION__ Results per page
|
|
409
|
+
* __EXAMPLE__ 10
|
|
410
|
+
* __REQUIRED__ TRUE
|
|
432
411
|
*
|
|
433
412
|
* @generated from field: optional int32 page_size = 3;
|
|
434
413
|
*/
|
|
@@ -448,20 +427,19 @@ export type GetPaginatedResultsRequest = Message<"liquidmetal.v1alpha1.GetPagina
|
|
|
448
427
|
*/
|
|
449
428
|
export declare const GetPaginatedResultsRequestSchema: GenMessage<GetPaginatedResultsRequest>;
|
|
450
429
|
/**
|
|
451
|
-
* GetPaginatedResultsResponse provides the requested page of results
|
|
452
|
-
* with updated pagination information.
|
|
453
|
-
*
|
|
454
430
|
* @generated from message liquidmetal.v1alpha1.GetPaginatedResultsResponse
|
|
455
431
|
*/
|
|
456
432
|
export type GetPaginatedResultsResponse = Message<"liquidmetal.v1alpha1.GetPaginatedResultsResponse"> & {
|
|
457
433
|
/**
|
|
458
|
-
* Page results with full metadata
|
|
434
|
+
* __DESCRIPTION__ Page results with full metadata
|
|
435
|
+
* __EXAMPLE__ [{"chunkSignature": "chunk_123abc", "text": "Sample text", "score": 0.95}]
|
|
459
436
|
*
|
|
460
437
|
* @generated from field: repeated liquidmetal.v1alpha1.TextResult results = 1;
|
|
461
438
|
*/
|
|
462
439
|
results: TextResult[];
|
|
463
440
|
/**
|
|
464
|
-
* Updated pagination information
|
|
441
|
+
* __DESCRIPTION__ Updated pagination information
|
|
442
|
+
* __EXAMPLE__ {"total": 100, "page": 2, "pageSize": 10, "totalPages": 10, "hasMore": true}
|
|
465
443
|
*
|
|
466
444
|
* @generated from field: liquidmetal.v1alpha1.PaginationInfo pagination = 2;
|
|
467
445
|
*/
|
|
@@ -473,41 +451,29 @@ export type GetPaginatedResultsResponse = Message<"liquidmetal.v1alpha1.GetPagin
|
|
|
473
451
|
*/
|
|
474
452
|
export declare const GetPaginatedResultsResponseSchema: GenMessage<GetPaginatedResultsResponse>;
|
|
475
453
|
/**
|
|
476
|
-
*
|
|
477
|
-
*
|
|
478
|
-
* to
|
|
479
|
-
*
|
|
480
|
-
*
|
|
481
|
-
* - Automated document indexing and processing
|
|
482
|
-
* - Extraction of structured data
|
|
483
|
-
* - Processing through specialized AI models
|
|
484
|
-
* - Storage in optimized formats for AI querying
|
|
485
|
-
* - Automatic PII detection and classification
|
|
486
|
-
*
|
|
487
|
-
* The service supports multiple file types including:
|
|
488
|
-
* - application/pdf
|
|
489
|
-
* - image/jpeg, image/png
|
|
490
|
-
* - audio/webm, audio/wav, audio/mp4, audio/mpeg
|
|
491
|
-
* - text/plain
|
|
454
|
+
* __TITLE__ Query
|
|
455
|
+
* The query endpoints provide advanced AI-driven search, conversation, and summarization capabilities for documents and media stored in SmartBuckets.
|
|
456
|
+
* It enables users and agents to interact naturally with content through conversational chat (DocumentChat), semantic search (RagSearch), and multi-modal queries across text, images, and audio (document_query). The service also supports intelligent summarization of search results (summarize_page) and paginated result navigation.
|
|
457
|
+
* Designed for seamless integration into AI workflows, these endpoints make complex document exploration, PII detection, and knowledge extraction accessible via simple APIs, eliminating the need for custom pipelines or infrastructure.
|
|
492
458
|
*
|
|
493
459
|
* @generated from service liquidmetal.v1alpha1.SearchAgentService
|
|
494
460
|
*/
|
|
495
461
|
export declare const SearchAgentService: GenService<{
|
|
496
462
|
/**
|
|
497
|
-
*
|
|
498
|
-
*
|
|
499
|
-
*
|
|
463
|
+
* Enables natural conversational interactions with documents stored in SmartBuckets. This endpoint allows users
|
|
464
|
+
* to ask questions, request summaries, and explore document content through an intuitive conversational interface.
|
|
465
|
+
* The system understands context and can handle complex queries about document contents.
|
|
500
466
|
*
|
|
501
|
-
* The
|
|
467
|
+
* The query system maintains conversation context throught the request_id, enabling follow-up questions and deep exploration
|
|
502
468
|
* of document content. It works across all supported file types and automatically handles multi-page
|
|
503
|
-
* documents, making complex
|
|
469
|
+
* documents, making complex file interaction as simple as having a conversation.
|
|
504
470
|
*
|
|
505
471
|
* The system will:
|
|
506
|
-
* - Maintain conversation history for context
|
|
507
|
-
* - Process questions against
|
|
472
|
+
* - Maintain conversation history for context when using the same request_id
|
|
473
|
+
* - Process questions against file content
|
|
508
474
|
* - Generate contextual, relevant responses
|
|
509
|
-
*
|
|
510
|
-
*
|
|
475
|
+
*
|
|
476
|
+
* Document query is supported for all file types, including PDFs, images, and audio files.
|
|
511
477
|
*
|
|
512
478
|
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.DocumentChat
|
|
513
479
|
*/
|
|
@@ -517,22 +483,13 @@ export declare const SearchAgentService: GenService<{
|
|
|
517
483
|
output: typeof DocumentChatResponseSchema;
|
|
518
484
|
};
|
|
519
485
|
/**
|
|
520
|
-
*
|
|
521
|
-
*
|
|
522
|
-
* to leverage private data stored in
|
|
523
|
-
*
|
|
524
|
-
* The RAG system automatically:
|
|
525
|
-
* - Processes and indexes uploaded content
|
|
526
|
-
* - Maintains optimal chunk sizes (max 450 tokens)
|
|
527
|
-
* - Handles document metadata
|
|
528
|
-
* - Provides relevance scoring
|
|
529
|
-
* - Manages document versioning
|
|
486
|
+
* Chunk Search provides search capabilities that serve as a complete
|
|
487
|
+
* drop-in replacement for traditional RAG pipelines. This system enables
|
|
488
|
+
* AI agents to leverage private data stored in SmartBuckets with zero
|
|
489
|
+
* additional configuration.
|
|
530
490
|
*
|
|
531
|
-
*
|
|
532
|
-
*
|
|
533
|
-
* - Building intelligent knowledge bases
|
|
534
|
-
* - Creating context-aware chatbots
|
|
535
|
-
* - Implementing semantic search systems
|
|
491
|
+
* Each input query is processed by our AI agent to determine the best way to search the data.
|
|
492
|
+
* The system will then return the most relevant results from the data ranked by relevance on the input query.
|
|
536
493
|
*
|
|
537
494
|
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RagSearch
|
|
538
495
|
*/
|
|
@@ -542,9 +499,9 @@ export declare const SearchAgentService: GenService<{
|
|
|
542
499
|
output: typeof RagSearchResponseSchema;
|
|
543
500
|
};
|
|
544
501
|
/**
|
|
545
|
-
*
|
|
502
|
+
* Generates intelligent summaries of search result pages, helping users
|
|
546
503
|
* quickly understand large result sets without reading through every document. The system
|
|
547
|
-
* analyzes the content of all results on a given page and generates a
|
|
504
|
+
* analyzes the content of all results on a given page and generates a detailed overview.
|
|
548
505
|
*
|
|
549
506
|
* The summary system:
|
|
550
507
|
* - Identifies key themes and topics
|
|
@@ -567,22 +524,22 @@ export declare const SearchAgentService: GenService<{
|
|
|
567
524
|
output: typeof CreatePageSummaryResponseSchema;
|
|
568
525
|
};
|
|
569
526
|
/**
|
|
570
|
-
*
|
|
571
|
-
*
|
|
572
|
-
*
|
|
573
|
-
*
|
|
527
|
+
* Primary search endpoint that provides advanced search capabilities across all document types stored in SmartBuckets.
|
|
528
|
+
*
|
|
529
|
+
* Supports recursive object search within objects, enabling nested content search like embedded images, text content,
|
|
530
|
+
* and personally identifiable information (PII).
|
|
574
531
|
*
|
|
575
532
|
* The system supports complex queries like:
|
|
576
|
-
* -
|
|
577
|
-
* -
|
|
578
|
-
* -
|
|
579
|
-
* -
|
|
533
|
+
* - 'Show me documents containing credit card numbers or social security numbers'
|
|
534
|
+
* - 'Find images of landscapes taken during sunset'
|
|
535
|
+
* - 'Get documents mentioning revenue forecasts from Q4 2023'
|
|
536
|
+
* - 'Find me all PDF documents that contain pictures of a cat'
|
|
537
|
+
* - 'Find me all audio files that contain information about the weather in SF in 2024'
|
|
580
538
|
*
|
|
581
539
|
* Key capabilities:
|
|
582
540
|
* - Natural language query understanding
|
|
583
|
-
* - Content-based search across text and
|
|
584
|
-
* - Automatic PII detection
|
|
585
|
-
* - Cross-document relationship analysis
|
|
541
|
+
* - Content-based search across text, images, and audio
|
|
542
|
+
* - Automatic PII detection
|
|
586
543
|
* - Multi-modal search (text, images, audio)
|
|
587
544
|
*
|
|
588
545
|
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.RunSupervisorAgent
|
|
@@ -593,16 +550,9 @@ export declare const SearchAgentService: GenService<{
|
|
|
593
550
|
output: typeof RunSupervisorAgentResponseSchema;
|
|
594
551
|
};
|
|
595
552
|
/**
|
|
596
|
-
*
|
|
597
|
-
* maintaining search context and result relevance.
|
|
598
|
-
*
|
|
599
|
-
*
|
|
600
|
-
* Features:
|
|
601
|
-
* - Consistent result ordering
|
|
602
|
-
* - Configurable page sizes
|
|
603
|
-
* - Efficient result caching
|
|
604
|
-
* - Cursor-based pagination
|
|
605
|
-
* - Support for infinite scroll
|
|
553
|
+
* Retrieve additional pages from a previous search. This endpoint enables
|
|
554
|
+
* navigation through large result sets while maintaining search context and result relevance.
|
|
555
|
+
* Retrieving paginated results requires a valid request_id from a previously completed search.
|
|
606
556
|
*
|
|
607
557
|
* @generated from rpc liquidmetal.v1alpha1.SearchAgentService.GetPaginatedResults
|
|
608
558
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search_agent_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/search_agent_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAEpF,OAAO,KAAK,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEzE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,sCAAsC,EAAE,
|
|
1
|
+
{"version":3,"file":"search_agent_pb.d.ts","sourceRoot":"","sources":["../../../src/liquidmetal/v1alpha1/search_agent_pb.ts"],"names":[],"mappings":"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"}
|