-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathchunks.ts
More file actions
345 lines (288 loc) · 9.08 KB
/
chunks.ts
File metadata and controls
345 lines (288 loc) · 9.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../core/resource';
import * as ChunksAPI from './chunks';
import { APIPromise } from '../../core/api-promise';
import { RequestOptions } from '../../internal/request-options';
export class Chunks extends APIResource {
/**
* Retrieve relevant chunks.
*
* The optional `request.filters` payload accepts equality checks (which also match
* scalars inside JSON arrays) plus the logical operators `$and`, `$or`, `$nor`,
* and `$not`. Field-level predicates include `$eq`, `$ne`, `$in`, `$nin`,
* `$exists`, `$type`, `$regex`, `$contains`, and the comparison operators `$gt`,
* `$gte`, `$lt`, and `$lte`. Comparison clauses evaluate typed metadata (`number`,
* `decimal`, `datetime`, or `date`) and raise detailed validation errors when
* operands cannot be coerced. Regex filters allow the optional `i` flag for
* case-insensitive matching, while `$contains` performs substring checks
* (case-insensitive by default, configurable via `case_sensitive`). Filters can be
* nested freely, for example:
*
* ```json
* {
* "$and": [
* { "category": "policy" },
* { "$or": [{ "region": "emea" }, { "priority": { "$in": ["p0", "p1"] } }] }
* ]
* }
* ```
*
* Returns a list of `ChunkResult` objects ordered by relevance.
*/
create(body: ChunkCreateParams, options?: RequestOptions): APIPromise<ChunkCreateResponse> {
return this._client.post('/retrieve/chunks', { body, ...options });
}
/**
* Retrieve relevant chunks with grouped response format.
*
* Uses the same filter operators as `/retrieve/chunks` (equality, `$eq/$ne`,
* `$gt/$gte/$lt/$lte`, `$in/$nin`, `$exists`, `$type`, `$regex`, `$contains`, and
* the logical `$and/$or/$nor/$not`), with arbitrary nesting supported inside
* `request.filters`.
*
* Returns both flat results (for backward compatibility) and grouped results (for
* UI). When padding > 0, groups chunks by main matches and their padding chunks.
*/
createGrouped(
body: ChunkCreateGroupedParams,
options?: RequestOptions,
): APIPromise<ChunkCreateGroupedResponse> {
return this._client.post('/retrieve/chunks/grouped', { body, ...options });
}
}
/**
* Query result at chunk level
*/
export interface ChunkResult {
chunk_number: number;
content: string;
content_type: string;
document_id: string;
metadata: { [key: string]: unknown };
score: number;
download_url?: string | null;
filename?: string | null;
/**
* Whether this chunk was added as padding
*/
is_padding?: boolean;
}
/**
* Base retrieve request model
*/
export interface RetrieveRequest {
/**
* Optional end-user scope for the operation
*/
end_user_id?: string | null;
/**
* Metadata filters supporting logical operators ($and/$or/$not/$nor) and field
* predicates ($eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$type/$regex/$contains).
*/
filters?: { [key: string]: unknown } | null;
/**
* Folder scope depth. 0 or None = exact folder only, -1 = include all descendants,
* n > 0 = include descendants up to n levels deeper.
*/
folder_depth?: number | null;
/**
* Optional folder scope. Accepts a folder PATH (e.g., '/Company/Reports') or list
* of paths.
*/
folder_name?: string | Array<string> | null;
/**
* Maximum number of chunks or documents to return.
*/
k?: number;
/**
* Minimum similarity score a result must meet before it is returned.
*/
min_score?: number;
/**
* Output format for image chunks in retrieval results.
*/
output_format?: 'base64' | 'url' | 'text' | null;
/**
* Number of additional chunks/pages to retrieve before and after matched chunks
* (ColPali only)
*/
padding?: number;
/**
* Natural-language query used to retrieve relevant chunks or documents.
*/
query?: string | null;
/**
* Base64-encoded image to use as query for Morphik multimodal retrieval. Requires
* use_colpali=True. Mutually exclusive with 'query'.
*/
query_image?: string | null;
/**
* When provided, uses Morphik's finetuned ColPali style embeddings (recommended to
* be True for high quality retrieval).
*/
use_colpali?: boolean | null;
/**
* When provided, overrides the workspace reranking configuration for this request.
*/
use_reranking?: boolean | null;
}
export type ChunkCreateResponse = Array<ChunkResult>;
/**
* Response that includes both flat results and grouped results for UI
*/
export interface ChunkCreateGroupedResponse {
/**
* Flat list of all chunks (for backward compatibility)
*/
chunks: Array<ChunkResult>;
/**
* Grouped chunks for UI display
*/
groups: Array<ChunkCreateGroupedResponse.Group>;
/**
* Whether padding was applied to any results
*/
has_padding: boolean;
/**
* Total number of unique chunks
*/
total_results: number;
}
export namespace ChunkCreateGroupedResponse {
/**
* Represents a group of chunks: one main match + its padding chunks
*/
export interface Group {
/**
* Query result at chunk level
*/
main_chunk: ChunksAPI.ChunkResult;
/**
* Total number of chunks in this group
*/
total_chunks: number;
padding_chunks?: Array<ChunksAPI.ChunkResult>;
}
}
export interface ChunkCreateParams {
/**
* Optional end-user scope for the operation
*/
end_user_id?: string | null;
/**
* Metadata filters supporting logical operators ($and/$or/$not/$nor) and field
* predicates ($eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$type/$regex/$contains).
*/
filters?: { [key: string]: unknown } | null;
/**
* Folder scope depth. 0 or None = exact folder only, -1 = include all descendants,
* n > 0 = include descendants up to n levels deeper.
*/
folder_depth?: number | null;
/**
* Optional folder scope. Accepts a folder PATH (e.g., '/Company/Reports') or list
* of paths.
*/
folder_name?: string | Array<string> | null;
/**
* Maximum number of chunks or documents to return.
*/
k?: number;
/**
* Minimum similarity score a result must meet before it is returned.
*/
min_score?: number;
/**
* Output format for image chunks in retrieval results.
*/
output_format?: 'base64' | 'url' | 'text' | null;
/**
* Number of additional chunks/pages to retrieve before and after matched chunks
* (ColPali only)
*/
padding?: number;
/**
* Natural-language query used to retrieve relevant chunks or documents.
*/
query?: string | null;
/**
* Base64-encoded image to use as query for Morphik multimodal retrieval. Requires
* use_colpali=True. Mutually exclusive with 'query'.
*/
query_image?: string | null;
/**
* When provided, uses Morphik's finetuned ColPali style embeddings (recommended to
* be True for high quality retrieval).
*/
use_colpali?: boolean | null;
/**
* When provided, overrides the workspace reranking configuration for this request.
*/
use_reranking?: boolean | null;
}
export interface ChunkCreateGroupedParams {
/**
* Optional end-user scope for the operation
*/
end_user_id?: string | null;
/**
* Metadata filters supporting logical operators ($and/$or/$not/$nor) and field
* predicates ($eq/$ne/$gt/$gte/$lt/$lte/$in/$nin/$exists/$type/$regex/$contains).
*/
filters?: { [key: string]: unknown } | null;
/**
* Folder scope depth. 0 or None = exact folder only, -1 = include all descendants,
* n > 0 = include descendants up to n levels deeper.
*/
folder_depth?: number | null;
/**
* Optional folder scope. Accepts a folder PATH (e.g., '/Company/Reports') or list
* of paths.
*/
folder_name?: string | Array<string> | null;
/**
* Maximum number of chunks or documents to return.
*/
k?: number;
/**
* Minimum similarity score a result must meet before it is returned.
*/
min_score?: number;
/**
* Output format for image chunks in retrieval results.
*/
output_format?: 'base64' | 'url' | 'text' | null;
/**
* Number of additional chunks/pages to retrieve before and after matched chunks
* (ColPali only)
*/
padding?: number;
/**
* Natural-language query used to retrieve relevant chunks or documents.
*/
query?: string | null;
/**
* Base64-encoded image to use as query for Morphik multimodal retrieval. Requires
* use_colpali=True. Mutually exclusive with 'query'.
*/
query_image?: string | null;
/**
* When provided, uses Morphik's finetuned ColPali style embeddings (recommended to
* be True for high quality retrieval).
*/
use_colpali?: boolean | null;
/**
* When provided, overrides the workspace reranking configuration for this request.
*/
use_reranking?: boolean | null;
}
export declare namespace Chunks {
export {
type ChunkResult as ChunkResult,
type RetrieveRequest as RetrieveRequest,
type ChunkCreateResponse as ChunkCreateResponse,
type ChunkCreateGroupedResponse as ChunkCreateGroupedResponse,
type ChunkCreateParams as ChunkCreateParams,
type ChunkCreateGroupedParams as ChunkCreateGroupedParams,
};
}