@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**.
11 lines • 343 B
TypeScript
/**
* Specifying a particular function via `{"name": "my_function"}` forces the model to call that function.
*
*/
export type AzureOpenAiChatCompletionFunctionCallOption = {
/**
* The name of the function to call.
*/
name: string;
} & Record<string, any>;
//# sourceMappingURL=chat-completion-function-call-option.d.ts.map