trieve-client 0.11.7

Trieve OpenAPI Specification. This document describes all of the operations available through the Trieve API.
Documentation
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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
# \ChunkApi

All URIs are relative to *https://api.trieve.ai*

Method | HTTP request | Description
------------- | ------------- | -------------
[**autocomplete**]ChunkApi.md#autocomplete | **POST** /api/chunk/autocomplete | Autocomplete
[**count_chunks**]ChunkApi.md#count_chunks | **POST** /api/chunk/count | Count chunks above threshold
[**create_chunk**]ChunkApi.md#create_chunk | **POST** /api/chunk | Create or Upsert Chunk or Chunks
[**delete_chunk**]ChunkApi.md#delete_chunk | **DELETE** /api/chunk/{chunk_id} | Delete Chunk
[**delete_chunk_by_tracking_id**]ChunkApi.md#delete_chunk_by_tracking_id | **DELETE** /api/chunk/tracking_id/{tracking_id} | Delete Chunk By Tracking Id
[**generate_off_chunks**]ChunkApi.md#generate_off_chunks | **POST** /api/chunk/generate | RAG on Specified Chunks
[**get_chunk_by_id**]ChunkApi.md#get_chunk_by_id | **GET** /api/chunk/{chunk_id} | Get Chunk By Id
[**get_chunk_by_tracking_id**]ChunkApi.md#get_chunk_by_tracking_id | **GET** /api/chunk/tracking_id/{tracking_id} | Get Chunk By Tracking Id
[**get_chunks_by_ids**]ChunkApi.md#get_chunks_by_ids | **POST** /api/chunks | Get Chunks By Ids
[**get_chunks_by_tracking_ids**]ChunkApi.md#get_chunks_by_tracking_ids | **POST** /api/chunks/tracking | Get Chunks By Tracking Ids
[**get_recommended_chunks**]ChunkApi.md#get_recommended_chunks | **POST** /api/chunk/recommend | Get Recommended Chunks
[**get_suggested_queries**]ChunkApi.md#get_suggested_queries | **POST** /api/chunk/suggestions | Generate suggested queries
[**scroll_dataset_chunks**]ChunkApi.md#scroll_dataset_chunks | **POST** /api/chunks/scroll | Scroll Chunks
[**search_chunks**]ChunkApi.md#search_chunks | **POST** /api/chunk/search | Search
[**update_chunk**]ChunkApi.md#update_chunk | **PUT** /api/chunk | Update Chunk
[**update_chunk_by_tracking_id**]ChunkApi.md#update_chunk_by_tracking_id | **PUT** /api/chunk/tracking_id/update | Update Chunk By Tracking Id



## autocomplete

> models::SearchResponseTypes autocomplete(tr_dataset, autocomplete_req_payload, x_api_version)
Autocomplete

This route provides the primary autocomplete functionality for the API. This prioritize prefix matching with semantic or full-text search.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**autocomplete_req_payload** | [**AutocompleteReqPayload**]AutocompleteReqPayload.md | JSON request payload to semantically search for chunks (chunks) | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**models::SearchResponseTypes**](SearchResponseTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## count_chunks

> models::CountChunkQueryResponseBody count_chunks(tr_dataset, count_chunks_req_payload)
Count chunks above threshold

This route can be used to determine the number of chunk results that match a search query including score threshold and filters. It may be high latency for large limits. There is a dataset configuration imposed restriction on the maximum limit value (default 10,000) which is used to prevent DDOS attacks. Auth'ed user or api key must have an admin or owner role for the specified dataset's organization.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**count_chunks_req_payload** | [**CountChunksReqPayload**]CountChunksReqPayload.md | JSON request payload to count chunks for a search query | [required] |

### Return type

[**models::CountChunkQueryResponseBody**](CountChunkQueryResponseBody.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## create_chunk

> models::ReturnQueuedChunk create_chunk(tr_dataset, create_chunk_req_payload_enum)
Create or Upsert Chunk or Chunks

Create new chunk(s). If the chunk has the same tracking_id as an existing chunk, the request will fail. Once a chunk is created, it can be searched for using the search endpoint. If uploading in bulk, the maximum amount of chunks that can be uploaded at once is 120 chunks. Auth'ed user or api key must have an admin or owner role for the specified dataset's organization.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**create_chunk_req_payload_enum** | [**CreateChunkReqPayloadEnum**]CreateChunkReqPayloadEnum.md | JSON request payload to create a new chunk (chunk) | [required] |

### Return type

[**models::ReturnQueuedChunk**](ReturnQueuedChunk.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## delete_chunk

> delete_chunk(tr_dataset, chunk_id)
Delete Chunk

Delete a chunk by its id. If deleting a root chunk which has a collision, the most recently created collision will become a new root chunk. Auth'ed user or api key must have an admin or owner role for the specified dataset's organization.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**chunk_id** | **uuid::Uuid** | Id of the chunk you want to fetch. | [required] |

### Return type

 (empty response body)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## delete_chunk_by_tracking_id

> delete_chunk_by_tracking_id(tr_dataset, tracking_id)
Delete Chunk By Tracking Id

Delete a chunk by tracking_id. This is useful for when you are coordinating with an external system and want to use the tracking_id to identify the chunk. If deleting a root chunk which has a collision, the most recently created collision will become a new root chunk. Auth'ed user or api key must have an admin or owner role for the specified dataset's organization.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**tracking_id** | **String** | tracking_id of the chunk you want to delete | [required] |

### Return type

 (empty response body)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## generate_off_chunks

> String generate_off_chunks(tr_dataset, generate_off_chunks_req_payload)
RAG on Specified Chunks

This endpoint exists as an alternative to the topic+message resource pattern where our Trieve handles chat memory. With this endpoint, the user is responsible for providing the context window and the prompt and the conversation is ephemeral.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**generate_off_chunks_req_payload** | [**GenerateOffChunksReqPayload**]GenerateOffChunksReqPayload.md | JSON request payload to perform RAG on some chunks (chunks) | [required] |

### Return type

**String**

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: text/plain, application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_chunk_by_id

> models::ChunkReturnTypes get_chunk_by_id(tr_dataset, chunk_id, x_api_version)
Get Chunk By Id

Get a singular chunk by id.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**chunk_id** | **uuid::Uuid** | Id of the chunk you want to fetch. | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**models::ChunkReturnTypes**](ChunkReturnTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_chunk_by_tracking_id

> models::ChunkReturnTypes get_chunk_by_tracking_id(tr_dataset, tracking_id, x_api_version)
Get Chunk By Tracking Id

Get a singular chunk by tracking_id. This is useful for when you are coordinating with an external system and want to use your own id as the primary reference for a chunk.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**tracking_id** | **String** | tracking_id of the chunk you want to fetch | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**models::ChunkReturnTypes**](ChunkReturnTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: Not defined
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_chunks_by_ids

> Vec<models::ChunkReturnTypes> get_chunks_by_ids(tr_dataset, get_chunks_data, x_api_version)
Get Chunks By Ids

Get multiple chunks by multiple ids.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**get_chunks_data** | [**GetChunksData**]GetChunksData.md | JSON request payload to get the chunks in the request | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**Vec<models::ChunkReturnTypes>**](ChunkReturnTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_chunks_by_tracking_ids

> Vec<models::ChunkReturnTypes> get_chunks_by_tracking_ids(tr_dataset, get_tracking_chunks_data, x_api_version)
Get Chunks By Tracking Ids

Get multiple chunks by ids.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**get_tracking_chunks_data** | [**GetTrackingChunksData**]GetTrackingChunksData.md | JSON request payload to get the chunks in the request | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**Vec<models::ChunkReturnTypes>**](ChunkReturnTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_recommended_chunks

> models::RecommendResponseTypes get_recommended_chunks(tr_dataset, recommend_chunks_request, x_api_version)
Get Recommended Chunks

Get recommendations of chunks similar to the positive samples in the request and dissimilar to the negative.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**recommend_chunks_request** | [**RecommendChunksRequest**]RecommendChunksRequest.md | JSON request payload to get recommendations of chunks similar to the chunks in the request | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**models::RecommendResponseTypes**](RecommendResponseTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## get_suggested_queries

> models::SuggestedQueriesResponse get_suggested_queries(tr_dataset, suggested_queries_req_payload)
Generate suggested queries

This endpoint will generate 3 suggested queries based off a hybrid search using RAG with the query provided in the request body and return them as a JSON object.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**suggested_queries_req_payload** | [**SuggestedQueriesReqPayload**]SuggestedQueriesReqPayload.md | JSON request payload to get alternative suggested queries | [required] |

### Return type

[**models::SuggestedQueriesResponse**](SuggestedQueriesResponse.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## scroll_dataset_chunks

> models::ScrollChunksResponseBody scroll_dataset_chunks(tr_dataset, scroll_chunks_req_payload)
Scroll Chunks

Get paginated chunks from your dataset with filters and custom sorting. If sort by is not specified, the results will sort by the id's of the chunks in ascending order. Sort by and offset_chunk_id cannot be used together; if you want to scroll with a sort by then you need to use a must_not filter with the ids you have already seen. There is a limit of 1000 id's in a must_not filter at a time.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**scroll_chunks_req_payload** | [**ScrollChunksReqPayload**]ScrollChunksReqPayload.md | JSON request payload to scroll through chunks (chunks) | [required] |

### Return type

[**models::ScrollChunksResponseBody**](ScrollChunksResponseBody.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## search_chunks

> models::SearchResponseTypes search_chunks(tr_dataset, search_chunks_req_payload, x_api_version)
Search

This route provides the primary search functionality for the API. It can be used to search for chunks by semantic similarity, full-text similarity, or a combination of both. Results' `chunk_html` values will be modified with `<b><mark>` tags for sub-sentence highlighting.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**search_chunks_req_payload** | [**SearchChunksReqPayload**]SearchChunksReqPayload.md | JSON request payload to semantically search for chunks (chunks) | [required] |
**x_api_version** | Option<[**models::ApiVersion**].md> | The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise. |  |

### Return type

[**models::SearchResponseTypes**](SearchResponseTypes.md)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## update_chunk

> update_chunk(tr_dataset, update_chunk_req_payload)
Update Chunk

Update a chunk. If you try to change the tracking_id of the chunk to have the same tracking_id as an existing chunk, the request will fail. Auth'ed user or api key must have an admin or owner role for the specified dataset's organization.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**update_chunk_req_payload** | [**UpdateChunkReqPayload**]UpdateChunkReqPayload.md | JSON request payload to update a chunk (chunk) | [required] |

### Return type

 (empty response body)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)


## update_chunk_by_tracking_id

> update_chunk_by_tracking_id(tr_dataset, update_chunk_by_tracking_id_data)
Update Chunk By Tracking Id

Update a chunk by tracking_id. This is useful for when you are coordinating with an external system and want to use the tracking_id to identify the chunk. Auth'ed user or api key must have an admin or owner role for the specified dataset's organization.

### Parameters


Name | Type | Description  | Required | Notes
------------- | ------------- | ------------- | ------------- | -------------
**tr_dataset** | **String** | The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid. | [required] |
**update_chunk_by_tracking_id_data** | [**UpdateChunkByTrackingIdData**]UpdateChunkByTrackingIdData.md | JSON request payload to update a chunk by tracking_id (chunks) | [required] |

### Return type

 (empty response body)

### Authorization

[ApiKey](../README.md#ApiKey)

### HTTP request headers

- **Content-Type**: application/json
- **Accept**: application/json

[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)