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**.

17 lines 531 B
/** * Additional parameters for generating input's embeddings. Default values are used for mandatory parameters. */ export type EmbeddingsModelParams = { /** * The number of dimensions the resulting output embeddings should have. * */ dimensions?: number; /** * OpenAI's spec allows for 'float' and 'base64' encoding formats. * */ encoding_format?: 'float' | 'base64' | 'binary'; normalize?: boolean; } & Record<string, any>; //# sourceMappingURL=embeddings-model-params.d.ts.map