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

12 lines 414 B
import type { AzureOpenAiFunctionObject } from './function-object.js'; /** * Representation of the 'AzureOpenAiChatCompletionTool' schema. */ export type AzureOpenAiChatCompletionTool = { /** * The type of the tool. Currently, only `function` is supported. */ type: 'function'; function: AzureOpenAiFunctionObject; } & Record<string, any>; //# sourceMappingURL=chat-completion-tool.d.ts.map