@@ -7,7 +7,6 @@ import * as Pagination from './pagination';
77import { type GetDocumentInfoListCursorParams , GetDocumentInfoListCursorResponse } from './pagination' ;
88import * as Uploads from './uploads' ;
99import * as API from './resources/index' ;
10- import { Admin , AdminCreateOrganizationParams , AdminCreateOrganizationResponse } from './resources/admin' ;
1110import {
1211 CollectionAddParams ,
1312 CollectionAddResponse ,
@@ -33,7 +32,7 @@ import {
3332 DocumentUpdateResponse ,
3433 Documents ,
3534} from './resources/documents' ;
36- import { ParserParseDocumentParams , ParserParseDocumentResponse , Parsers } from './resources/parsers ' ;
35+ import { ModelRerankParams , ModelRerankResponse , Models } from './resources/models ' ;
3736import {
3837 Queries ,
3938 QueryTopDocumentsParams ,
@@ -161,12 +160,11 @@ export class ZeroEntropy extends Core.APIClient {
161160 this . apiKey = apiKey ;
162161 }
163162
164- admin : API . Admin = new API . Admin ( this ) ;
165163 status : API . Status = new API . Status ( this ) ;
166164 collections : API . Collections = new API . Collections ( this ) ;
167165 documents : API . Documents = new API . Documents ( this ) ;
168166 queries : API . Queries = new API . Queries ( this ) ;
169- parsers : API . Parsers = new API . Parsers ( this ) ;
167+ models : API . Models = new API . Models ( this ) ;
170168
171169 /**
172170 * Check whether the base URL is set to its default.
@@ -211,14 +209,13 @@ export class ZeroEntropy extends Core.APIClient {
211209 static fileFromPath = Uploads . fileFromPath ;
212210}
213211
214- ZeroEntropy . Admin = Admin ;
215212ZeroEntropy . Status = Status ;
216213ZeroEntropy . Collections = Collections ;
217214ZeroEntropy . Documents = Documents ;
218215ZeroEntropy . DocumentGetInfoListResponsesGetDocumentInfoListCursor =
219216 DocumentGetInfoListResponsesGetDocumentInfoListCursor ;
220217ZeroEntropy . Queries = Queries ;
221- ZeroEntropy . Parsers = Parsers ;
218+ ZeroEntropy . Models = Models ;
222219export declare namespace ZeroEntropy {
223220 export type RequestOptions = Core . RequestOptions ;
224221
@@ -228,12 +225,6 @@ export declare namespace ZeroEntropy {
228225 type GetDocumentInfoListCursorResponse as GetDocumentInfoListCursorResponse ,
229226 } ;
230227
231- export {
232- Admin as Admin ,
233- type AdminCreateOrganizationResponse as AdminCreateOrganizationResponse ,
234- type AdminCreateOrganizationParams as AdminCreateOrganizationParams ,
235- } ;
236-
237228 export {
238229 Status as Status ,
239230 type StatusGetStatusResponse as StatusGetStatusResponse ,
@@ -278,9 +269,9 @@ export declare namespace ZeroEntropy {
278269 } ;
279270
280271 export {
281- Parsers as Parsers ,
282- type ParserParseDocumentResponse as ParserParseDocumentResponse ,
283- type ParserParseDocumentParams as ParserParseDocumentParams ,
272+ Models as Models ,
273+ type ModelRerankResponse as ModelRerankResponse ,
274+ type ModelRerankParams as ModelRerankParams ,
284275 } ;
285276}
286277
0 commit comments