// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from '../../core/resource'; import * as IndexesAPI from './indexes/indexes'; import { BaseIndexes, CreateIndex, CreateIndicesSinglePage, IndexCreateParams, IndexDeleteByIDsParams, IndexDeleteByIDsResponse, IndexDeleteParams, IndexDeleteResponse, IndexDeleteVectorsByID, IndexDimensionConfiguration, IndexGetByIDsParams, IndexGetByIDsResponse, IndexGetParams, IndexInfoParams, IndexInfoResponse, IndexInsert, IndexInsertParams, IndexInsertResponse, IndexListParams, IndexListVectorsParams, IndexListVectorsResponse, IndexQuery, IndexQueryParams, IndexQueryResponse, IndexUpsert, IndexUpsertParams, IndexUpsertResponse, Indexes, } from './indexes/indexes'; export class BaseVectorize extends APIResource { static override readonly _key: readonly ['vectorize'] = Object.freeze(['vectorize'] as const); } export class Vectorize extends BaseVectorize { indexes: IndexesAPI.Indexes = new IndexesAPI.Indexes(this._client); } Vectorize.Indexes = Indexes; Vectorize.BaseIndexes = BaseIndexes; export declare namespace Vectorize { export { Indexes as Indexes, BaseIndexes as BaseIndexes, type CreateIndex as CreateIndex, type IndexDeleteVectorsByID as IndexDeleteVectorsByID, type IndexDimensionConfiguration as IndexDimensionConfiguration, type IndexInsert as IndexInsert, type IndexQuery as IndexQuery, type IndexUpsert as IndexUpsert, type IndexDeleteResponse as IndexDeleteResponse, type IndexDeleteByIDsResponse as IndexDeleteByIDsResponse, type IndexGetByIDsResponse as IndexGetByIDsResponse, type IndexInfoResponse as IndexInfoResponse, type IndexInsertResponse as IndexInsertResponse, type IndexListVectorsResponse as IndexListVectorsResponse, type IndexQueryResponse as IndexQueryResponse, type IndexUpsertResponse as IndexUpsertResponse, type CreateIndicesSinglePage as CreateIndicesSinglePage, type IndexCreateParams as IndexCreateParams, type IndexListParams as IndexListParams, type IndexDeleteParams as IndexDeleteParams, type IndexDeleteByIDsParams as IndexDeleteByIDsParams, type IndexGetParams as IndexGetParams, type IndexGetByIDsParams as IndexGetByIDsParams, type IndexInfoParams as IndexInfoParams, type IndexInsertParams as IndexInsertParams, type IndexListVectorsParams as IndexListVectorsParams, type IndexQueryParams as IndexQueryParams, type IndexUpsertParams as IndexUpsertParams, }; }