@@ -4,6 +4,8 @@ import { type Agent } from './_shims/index';
4
4
import * as qs from './internal/qs' ;
5
5
import * as Core from './core' ;
6
6
import * as Errors from './error' ;
7
+ import * as Pagination from './pagination' ;
8
+ import { type DatasetsIterrowsParams , DatasetsIterrowsResponse } from './pagination' ;
7
9
import * as Uploads from './uploads' ;
8
10
import * as API from './resources/index' ;
9
11
import {
@@ -20,14 +22,11 @@ import {
20
22
ListBenchmarksResponse ,
21
23
} from './resources/benchmarks' ;
22
24
import {
23
- Datasetio ,
24
- DatasetioAppendRowsParams ,
25
- DatasetioGetRowsPaginatedParams ,
26
- PaginatedRowsResult ,
27
- } from './resources/datasetio' ;
28
- import {
25
+ DatasetIterrowsParams ,
26
+ DatasetIterrowsResponse ,
29
27
DatasetListResponse ,
30
28
DatasetRegisterParams ,
29
+ DatasetRegisterResponse ,
31
30
DatasetRetrieveResponse ,
32
31
Datasets ,
33
32
ListDatasetsResponse ,
@@ -286,7 +285,6 @@ export class LlamaStackClient extends Core.APIClient {
286
285
shields : API . Shields = new API . Shields ( this ) ;
287
286
syntheticDataGeneration : API . SyntheticDataGeneration = new API . SyntheticDataGeneration ( this ) ;
288
287
telemetry : API . Telemetry = new API . Telemetry ( this ) ;
289
- datasetio : API . Datasetio = new API . Datasetio ( this ) ;
290
288
scoring : API . Scoring = new API . Scoring ( this ) ;
291
289
scoringFunctions : API . ScoringFunctions = new API . ScoringFunctions ( this ) ;
292
290
benchmarks : API . Benchmarks = new API . Benchmarks ( this ) ;
@@ -353,13 +351,18 @@ LlamaStackClient.Safety = Safety;
353
351
LlamaStackClient . Shields = Shields ;
354
352
LlamaStackClient . SyntheticDataGeneration = SyntheticDataGeneration ;
355
353
LlamaStackClient . Telemetry = Telemetry ;
356
- LlamaStackClient . Datasetio = Datasetio ;
357
354
LlamaStackClient . Scoring = Scoring ;
358
355
LlamaStackClient . ScoringFunctions = ScoringFunctions ;
359
356
LlamaStackClient . Benchmarks = Benchmarks ;
360
357
export declare namespace LlamaStackClient {
361
358
export type RequestOptions = Core . RequestOptions ;
362
359
360
+ export import DatasetsIterrows = Pagination . DatasetsIterrows ;
361
+ export {
362
+ type DatasetsIterrowsParams as DatasetsIterrowsParams ,
363
+ type DatasetsIterrowsResponse as DatasetsIterrowsResponse ,
364
+ } ;
365
+
363
366
export {
364
367
Toolgroups as Toolgroups ,
365
368
type ListToolGroupsResponse as ListToolGroupsResponse ,
@@ -407,6 +410,9 @@ export declare namespace LlamaStackClient {
407
410
type ListDatasetsResponse as ListDatasetsResponse ,
408
411
type DatasetRetrieveResponse as DatasetRetrieveResponse ,
409
412
type DatasetListResponse as DatasetListResponse ,
413
+ type DatasetIterrowsResponse as DatasetIterrowsResponse ,
414
+ type DatasetRegisterResponse as DatasetRegisterResponse ,
415
+ type DatasetIterrowsParams as DatasetIterrowsParams ,
410
416
type DatasetRegisterParams as DatasetRegisterParams ,
411
417
} ;
412
418
@@ -528,13 +534,6 @@ export declare namespace LlamaStackClient {
528
534
type TelemetrySaveSpansToDatasetParams as TelemetrySaveSpansToDatasetParams ,
529
535
} ;
530
536
531
- export {
532
- Datasetio as Datasetio ,
533
- type PaginatedRowsResult as PaginatedRowsResult ,
534
- type DatasetioAppendRowsParams as DatasetioAppendRowsParams ,
535
- type DatasetioGetRowsPaginatedParams as DatasetioGetRowsPaginatedParams ,
536
- } ;
537
-
538
537
export {
539
538
Scoring as Scoring ,
540
539
type ScoringScoreResponse as ScoringScoreResponse ,
0 commit comments