UNPKG

@sap-ai-sdk/orchestration

Version:

SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.

21 lines 606 B
import type { EmbeddingResult } from './embedding-result.js'; import type { EmbeddingsUsage } from './embeddings-usage.js'; /** * The response from request to embedding model following OpenAI specification. */ export type EmbeddingsResponse = { /** * The object type, which is always "list". */ object: 'list'; /** * The list of embeddings generated by the model. */ data: EmbeddingResult[]; /** * The name of the model used to generate the embedding. */ model: string; usage: EmbeddingsUsage; }; //# sourceMappingURL=embeddings-response.d.ts.map