UNPKG

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

17 lines 671 B
import type { AzureOpenAiFunctionParameters } from './function-parameters.js'; /** * Representation of the 'AzureOpenAiChatCompletionFunctions' schema. * @deprecated */ export type AzureOpenAiChatCompletionFunctions = { /** * A description of what the function does, used by the model to choose when and how to call the function. */ description?: string; /** * The name of the function to be called. Must be a-z, A-Z, 0-9, or contain underscores and dashes, with a maximum length of 64. */ name: string; parameters?: AzureOpenAiFunctionParameters; } & Record<string, any>; //# sourceMappingURL=chat-completion-functions.d.ts.map