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

27 lines 710 B
/** * Usage statistics for the completion request. */ export type AzureOpenAiCompletionUsage = { /** * Number of tokens in the prompt. */ prompt_tokens: number; /** * Number of tokens in the generated completion. */ completion_tokens: number; /** * Total number of tokens used in the request (prompt + completion). */ total_tokens: number; /** * Breakdown of tokens used in a completion. */ completion_tokens_details?: { /** * Tokens generated by the model for reasoning. */ reasoning_tokens?: number; } & Record<string, any>; } & Record<string, any>; //# sourceMappingURL=completion-usage.d.ts.map