Class QianFanUsage
java.lang.Object
org.springframework.ai.qianfan.metadata.QianFanUsage
- All Implemented Interfaces:
Usage
Usage
implementation for QianFan.- Author:
- Thomas Vitale
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic QianFanUsage
from
(QianFanApi.Usage usage) Returns the number of tokens returned in the generation (aka completion) of the AI's response.Returns the number of tokens used in the prompt of the AI request.Return the total number of tokens from both the prompt of an AI request and generation of the AI's response.protected QianFanApi.Usage
getUsage()
toString()
-
Constructor Details
-
QianFanUsage
-
-
Method Details
-
from
-
getUsage
-
getPromptTokens
Description copied from interface:Usage
Returns the number of tokens used in the prompt of the AI request.- Specified by:
getPromptTokens
in interfaceUsage
- Returns:
- an
Long
with the number of tokens used in the prompt of the AI request. - See Also:
-
getGenerationTokens
Description copied from interface:Usage
Returns the number of tokens returned in the generation (aka completion) of the AI's response.- Specified by:
getGenerationTokens
in interfaceUsage
- Returns:
- an
Long
with the number of tokens returned in the generation (aka completion) of the AI's response. - See Also:
-
getTotalTokens
Description copied from interface:Usage
Return the total number of tokens from both the prompt of an AI request and generation of the AI's response.- Specified by:
getTotalTokens
in interfaceUsage
- Returns:
- the total number of tokens from both the prompt of an AI request and generation of the AI's response.
- See Also:
-
toString
-