UNPKG

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

12 lines 348 B
import type { FunctionObject } from './function-object.js'; /** * Representation of the 'ChatCompletionTool' schema. */ export type ChatCompletionTool = { /** * The type of the tool. Currently, only `function` is supported. */ type: 'function'; function: FunctionObject; }; //# sourceMappingURL=chat-completion-tool.d.ts.map