@@ -5,7 +5,12 @@ import * as qs from './internal/qs';
55import * as Core from './core' ;
66import * as Errors from './error' ;
77import * as Pagination from './pagination' ;
8- import { type DatasetsIterrowsParams , DatasetsIterrowsResponse } from './pagination' ;
8+ import {
9+ type DatasetsIterrowsParams ,
10+ DatasetsIterrowsResponse ,
11+ type OpenAICursorPaginationParams ,
12+ OpenAICursorPaginationResponse ,
13+ } from './pagination' ;
914import * as Uploads from './uploads' ;
1015import * as API from './resources/index' ;
1116import {
@@ -41,6 +46,7 @@ import {
4146 FileCreateParams ,
4247 FileListParams ,
4348 Files ,
49+ FilesOpenAICursorPagination ,
4450 ListFilesResponse ,
4551} from './resources/files' ;
4652import {
@@ -177,6 +183,7 @@ import {
177183 ResponseCreateParamsStreaming ,
178184 ResponseListParams ,
179185 ResponseListResponse ,
186+ ResponseListResponsesOpenAICursorPagination ,
180187 ResponseObject ,
181188 ResponseObjectStream ,
182189 Responses ,
@@ -199,6 +206,7 @@ import {
199206 VectorStoreSearchResponse ,
200207 VectorStoreUpdateParams ,
201208 VectorStores ,
209+ VectorStoresOpenAICursorPagination ,
202210} from './resources/vector-stores/vector-stores' ;
203211
204212export interface ClientOptions {
@@ -394,6 +402,7 @@ LlamaStackClient.Toolgroups = Toolgroups;
394402LlamaStackClient . Tools = Tools ;
395403LlamaStackClient . ToolRuntime = ToolRuntime ;
396404LlamaStackClient . Responses = Responses ;
405+ LlamaStackClient . ResponseListResponsesOpenAICursorPagination = ResponseListResponsesOpenAICursorPagination ;
397406LlamaStackClient . Agents = Agents ;
398407LlamaStackClient . Datasets = Datasets ;
399408LlamaStackClient . Eval = Eval ;
@@ -405,6 +414,7 @@ LlamaStackClient.Completions = Completions;
405414LlamaStackClient . VectorIo = VectorIo ;
406415LlamaStackClient . VectorDBs = VectorDBs ;
407416LlamaStackClient . VectorStores = VectorStores ;
417+ LlamaStackClient . VectorStoresOpenAICursorPagination = VectorStoresOpenAICursorPagination ;
408418LlamaStackClient . Models = Models ;
409419LlamaStackClient . PostTraining = PostTraining ;
410420LlamaStackClient . Providers = Providers ;
@@ -418,6 +428,7 @@ LlamaStackClient.Scoring = Scoring;
418428LlamaStackClient . ScoringFunctions = ScoringFunctions ;
419429LlamaStackClient . Benchmarks = Benchmarks ;
420430LlamaStackClient . Files = Files ;
431+ LlamaStackClient . FilesOpenAICursorPagination = FilesOpenAICursorPagination ;
421432export declare namespace LlamaStackClient {
422433 export type RequestOptions = Core . RequestOptions ;
423434
@@ -427,6 +438,12 @@ export declare namespace LlamaStackClient {
427438 type DatasetsIterrowsResponse as DatasetsIterrowsResponse ,
428439 } ;
429440
441+ export import OpenAICursorPagination = Pagination . OpenAICursorPagination ;
442+ export {
443+ type OpenAICursorPaginationParams as OpenAICursorPaginationParams ,
444+ type OpenAICursorPaginationResponse as OpenAICursorPaginationResponse ,
445+ } ;
446+
430447 export {
431448 Toolgroups as Toolgroups ,
432449 type ListToolGroupsResponse as ListToolGroupsResponse ,
@@ -457,6 +474,7 @@ export declare namespace LlamaStackClient {
457474 type ResponseObject as ResponseObject ,
458475 type ResponseObjectStream as ResponseObjectStream ,
459476 type ResponseListResponse as ResponseListResponse ,
477+ ResponseListResponsesOpenAICursorPagination as ResponseListResponsesOpenAICursorPagination ,
460478 type ResponseCreateParams as ResponseCreateParams ,
461479 type ResponseCreateParamsNonStreaming as ResponseCreateParamsNonStreaming ,
462480 type ResponseCreateParamsStreaming as ResponseCreateParamsStreaming ,
@@ -565,6 +583,7 @@ export declare namespace LlamaStackClient {
565583 type VectorStore as VectorStore ,
566584 type VectorStoreDeleteResponse as VectorStoreDeleteResponse ,
567585 type VectorStoreSearchResponse as VectorStoreSearchResponse ,
586+ VectorStoresOpenAICursorPagination as VectorStoresOpenAICursorPagination ,
568587 type VectorStoreCreateParams as VectorStoreCreateParams ,
569588 type VectorStoreUpdateParams as VectorStoreUpdateParams ,
570589 type VectorStoreListParams as VectorStoreListParams ,
@@ -675,6 +694,7 @@ export declare namespace LlamaStackClient {
675694 type File as File ,
676695 type ListFilesResponse as ListFilesResponse ,
677696 type FileContentResponse as FileContentResponse ,
697+ FilesOpenAICursorPagination as FilesOpenAICursorPagination ,
678698 type FileCreateParams as FileCreateParams ,
679699 type FileListParams as FileListParams ,
680700 } ;
0 commit comments