import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; export declare class Embeddings extends ClientSDK { /** * List available embedding models * * @remarks * Returns a list of available embedding models with their limits. Use this endpoint to discover which models are available and their constraints (batch size, input length) before making embedding requests. */ listModels(request: operations.ListEmbeddingModelsRequest, options?: RequestOptions): Promise; /** * Create text embeddings * * @remarks * Generates vector embeddings for single or multiple text inputs. Returns floating-point vectors along with token usage statistics. */ embed(request: operations.EmbedRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=embeddings.d.ts.map