@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**.
11 lines • 405 B
TypeScript
import type { ModuleResultsBase } from './module-results-base.js';
import type { EmbeddingsResponse } from './embeddings-response.js';
/**
* Representation of the 'EmbeddingsPostResponse' schema.
*/
export type EmbeddingsPostResponse = {
request_id: string;
intermediate_results?: ModuleResultsBase;
final_result: EmbeddingsResponse;
};
//# sourceMappingURL=embeddings-post-response.d.ts.map