-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdata-sources.ts
More file actions
460 lines (401 loc) · 10.2 KB
/
data-sources.ts
File metadata and controls
460 lines (401 loc) · 10.2 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
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../core/resource';
import * as Shared from '../shared';
import * as IndexingJobsAPI from './indexing-jobs';
import { APIPromise } from '../../core/api-promise';
import { RequestOptions } from '../../internal/request-options';
import { path } from '../../internal/utils/path';
export class DataSources extends APIResource {
/**
* To add a data source to a knowledge base, send a POST request to
* `/v2/gen-ai/knowledge_bases/{knowledge_base_uuid}/data_sources`.
*
* @example
* ```ts
* const dataSource =
* await client.knowledgeBases.dataSources.create(
* '"123e4567-e89b-12d3-a456-426614174000"',
* );
* ```
*/
create(
knowledgeBaseUuid: string,
body: DataSourceCreateParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<DataSourceCreateResponse> {
return this._client.post(path`/v2/gen-ai/knowledge_bases/${knowledgeBaseUuid}/data_sources`, {
body,
defaultBaseURL: 'https://api.digitalocean.com',
...options,
});
}
/**
* To list all data sources for a knowledge base, send a GET request to
* `/v2/gen-ai/knowledge_bases/{knowledge_base_uuid}/data_sources`.
*
* @example
* ```ts
* const dataSources =
* await client.knowledgeBases.dataSources.list(
* '"123e4567-e89b-12d3-a456-426614174000"',
* );
* ```
*/
list(
knowledgeBaseUuid: string,
query: DataSourceListParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<DataSourceListResponse> {
return this._client.get(path`/v2/gen-ai/knowledge_bases/${knowledgeBaseUuid}/data_sources`, {
query,
defaultBaseURL: 'https://api.digitalocean.com',
...options,
});
}
/**
* To delete a data source from a knowledge base, send a DELETE request to
* `/v2/gen-ai/knowledge_bases/{knowledge_base_uuid}/data_sources/{data_source_uuid}`.
*
* @example
* ```ts
* const dataSource =
* await client.knowledgeBases.dataSources.delete(
* '"123e4567-e89b-12d3-a456-426614174000"',
* {
* knowledge_base_uuid:
* '"123e4567-e89b-12d3-a456-426614174000"',
* },
* );
* ```
*/
delete(
dataSourceUuid: string,
params: DataSourceDeleteParams,
options?: RequestOptions,
): APIPromise<DataSourceDeleteResponse> {
const { knowledge_base_uuid } = params;
return this._client.delete(
path`/v2/gen-ai/knowledge_bases/${knowledge_base_uuid}/data_sources/${dataSourceUuid}`,
{ defaultBaseURL: 'https://api.digitalocean.com', ...options },
);
}
/**
* To create presigned URLs for knowledge base data source file upload, send a POST
* request to `/v2/gen-ai/knowledge_bases/data_sources/file_upload_presigned_urls`.
*
* @example
* ```ts
* const response =
* await client.knowledgeBases.dataSources.createPresignedURLs();
* ```
*/
createPresignedURLs(
body: DataSourceCreatePresignedURLsParams | null | undefined = {},
options?: RequestOptions,
): APIPromise<DataSourceCreatePresignedURLsResponse> {
return this._client.post('/v2/gen-ai/knowledge_bases/data_sources/file_upload_presigned_urls', {
body,
defaultBaseURL: 'https://api.digitalocean.com',
...options,
});
}
}
/**
* File to upload as data source for knowledge base.
*/
export interface APIFileUploadDataSource {
/**
* The original file name
*/
original_file_name?: string;
/**
* The size of the file in bytes
*/
size_in_bytes?: string;
/**
* The object key the file was stored as
*/
stored_object_key?: string;
}
/**
* Data Source configuration for Knowledge Bases
*/
export interface APIKnowledgeBaseDataSource {
/**
* AWS S3 Data Source for Display
*/
aws_data_source?: APIKnowledgeBaseDataSource.AwsDataSource;
/**
* Name of storage bucket - Deprecated, moved to data_source_details
*/
bucket_name?: string;
/**
* Creation date / time
*/
created_at?: string;
/**
* Dropbox Data Source for Display
*/
dropbox_data_source?: APIKnowledgeBaseDataSource.DropboxDataSource;
/**
* File to upload as data source for knowledge base.
*/
file_upload_data_source?: APIFileUploadDataSource;
/**
* Path of folder or object in bucket - Deprecated, moved to data_source_details
*/
item_path?: string;
last_datasource_indexing_job?: IndexingJobsAPI.APIIndexedDataSource;
/**
* IndexingJob description
*/
last_indexing_job?: IndexingJobsAPI.APIIndexingJob;
/**
* Region code - Deprecated, moved to data_source_details
*/
region?: string;
/**
* Spaces Bucket Data Source
*/
spaces_data_source?: APISpacesDataSource;
/**
* Last modified
*/
updated_at?: string;
/**
* Unique id of knowledge base
*/
uuid?: string;
/**
* WebCrawlerDataSource
*/
web_crawler_data_source?: APIWebCrawlerDataSource;
}
export namespace APIKnowledgeBaseDataSource {
/**
* AWS S3 Data Source for Display
*/
export interface AwsDataSource {
/**
* Spaces bucket name
*/
bucket_name?: string;
item_path?: string;
/**
* Region of bucket
*/
region?: string;
}
/**
* Dropbox Data Source for Display
*/
export interface DropboxDataSource {
folder?: string;
}
}
/**
* Spaces Bucket Data Source
*/
export interface APISpacesDataSource {
/**
* Spaces bucket name
*/
bucket_name?: string;
item_path?: string;
/**
* Region of bucket
*/
region?: string;
}
/**
* WebCrawlerDataSource
*/
export interface APIWebCrawlerDataSource {
/**
* The base url to crawl.
*/
base_url?: string;
/**
* Options for specifying how URLs found on pages should be handled.
*
* - UNKNOWN: Default unknown value
* - SCOPED: Only include the base URL.
* - PATH: Crawl the base URL and linked pages within the URL path.
* - DOMAIN: Crawl the base URL and linked pages within the same domain.
* - SUBDOMAINS: Crawl the base URL and linked pages for any subdomain.
*/
crawling_option?: 'UNKNOWN' | 'SCOPED' | 'PATH' | 'DOMAIN' | 'SUBDOMAINS';
/**
* Whether to ingest and index media (images, etc.) on web pages.
*/
embed_media?: boolean;
}
/**
* AWS S3 Data Source
*/
export interface AwsDataSource {
/**
* Spaces bucket name
*/
bucket_name?: string;
item_path?: string;
/**
* The AWS Key ID
*/
key_id?: string;
/**
* Region of bucket
*/
region?: string;
/**
* The AWS Secret Key
*/
secret_key?: string;
}
/**
* Information about a newly created knowldege base data source
*/
export interface DataSourceCreateResponse {
/**
* Data Source configuration for Knowledge Bases
*/
knowledge_base_data_source?: APIKnowledgeBaseDataSource;
}
/**
* A list of knowledge base data sources
*/
export interface DataSourceListResponse {
/**
* The data sources
*/
knowledge_base_data_sources?: Array<APIKnowledgeBaseDataSource>;
/**
* Links to other pages
*/
links?: Shared.APILinks;
/**
* Meta information about the data set
*/
meta?: Shared.APIMeta;
}
/**
* Information about a newly deleted knowledge base data source
*/
export interface DataSourceDeleteResponse {
/**
* Data source id
*/
data_source_uuid?: string;
/**
* Knowledge base id
*/
knowledge_base_uuid?: string;
}
/**
* Response with pre-signed urls to upload files.
*/
export interface DataSourceCreatePresignedURLsResponse {
/**
* The ID generated for the request for Presigned URLs.
*/
request_id?: string;
/**
* A list of generated presigned URLs and object keys, one per file.
*/
uploads?: Array<DataSourceCreatePresignedURLsResponse.Upload>;
}
export namespace DataSourceCreatePresignedURLsResponse {
/**
* Detailed info about each presigned URL returned to the client.
*/
export interface Upload {
/**
* The time the url expires at.
*/
expires_at?: string;
/**
* The unique object key to store the file as.
*/
object_key?: string;
/**
* The original file name.
*/
original_file_name?: string;
/**
* The actual presigned URL the client can use to upload the file directly.
*/
presigned_url?: string;
}
}
export interface DataSourceCreateParams {
/**
* AWS S3 Data Source
*/
aws_data_source?: AwsDataSource;
/**
* Knowledge base id
*/
body_knowledge_base_uuid?: string;
/**
* Spaces Bucket Data Source
*/
spaces_data_source?: APISpacesDataSource;
/**
* WebCrawlerDataSource
*/
web_crawler_data_source?: APIWebCrawlerDataSource;
}
export interface DataSourceListParams {
/**
* Page number.
*/
page?: number;
/**
* Items per page.
*/
per_page?: number;
}
export interface DataSourceDeleteParams {
/**
* Knowledge base id
*/
knowledge_base_uuid: string;
}
export interface DataSourceCreatePresignedURLsParams {
/**
* A list of files to generate presigned URLs for.
*/
files?: Array<DataSourceCreatePresignedURLsParams.File>;
}
export namespace DataSourceCreatePresignedURLsParams {
/**
* A single file’s metadata in the request.
*/
export interface File {
/**
* Local filename
*/
file_name?: string;
/**
* The size of the file in bytes.
*/
file_size?: string;
}
}
export declare namespace DataSources {
export {
type APIFileUploadDataSource as APIFileUploadDataSource,
type APIKnowledgeBaseDataSource as APIKnowledgeBaseDataSource,
type APISpacesDataSource as APISpacesDataSource,
type APIWebCrawlerDataSource as APIWebCrawlerDataSource,
type AwsDataSource as AwsDataSource,
type DataSourceCreateResponse as DataSourceCreateResponse,
type DataSourceListResponse as DataSourceListResponse,
type DataSourceDeleteResponse as DataSourceDeleteResponse,
type DataSourceCreatePresignedURLsResponse as DataSourceCreatePresignedURLsResponse,
type DataSourceCreateParams as DataSourceCreateParams,
type DataSourceListParams as DataSourceListParams,
type DataSourceDeleteParams as DataSourceDeleteParams,
type DataSourceCreatePresignedURLsParams as DataSourceCreatePresignedURLsParams,
};
}