@sap-ai-sdk/prompt-registry
Version:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for **SAP AI Core**, **SAP Generative AI Hub**, and **Orchestration Service**.
14 lines • 460 B
TypeScript
import type { FunctionObject } from './function-object.js';
import type { CacheControl } from './cache-control.js';
/**
* Representation of the 'SchemasChatCompletionTool' schema.
*/
export type SchemasChatCompletionTool = {
/**
* The type of the tool. Currently, only `function` is supported.
*/
type: 'function';
function: FunctionObject;
cache_control?: CacheControl;
};
//# sourceMappingURL=schemas-chat-completion-tool.d.ts.map