@sap-ai-sdk/foundation-models
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
12 lines • 357 B
TypeScript
/**
* The authentication options for Azure OpenAI On Your Data when using an API key.
*/
export type AzureOpenAiOnYourDataApiKeyAuthenticationOptions = {
type: string;
} & {
/**
* The API key to use for authentication.
*/
key: string;
} & Record<string, any>;
//# sourceMappingURL=on-your-data-api-key-authentication-options.d.ts.map