InferenceDetails interface
Details for an inference call matching C# implementation
Properties
| finish |
Array of finish reasons |
| input |
Number of input tokens used |
| model | The model name/identifier |
| operation |
The operation name/type for the inference |
| output |
Number of output tokens generated |
| provider |
The provider name (e.g., openai, azure, anthropic) |
| response |
Response ID from the model provider |
Property Details
finishReasons
Array of finish reasons
finishReasons?: string[]
Property Value
string[]
inputTokens
Number of input tokens used
inputTokens?: number
Property Value
number
model
The model name/identifier
model: string
Property Value
string
operationName
The operation name/type for the inference
operationName: InferenceOperationType
Property Value
outputTokens
Number of output tokens generated
outputTokens?: number
Property Value
number
providerName
The provider name (e.g., openai, azure, anthropic)
providerName?: string
Property Value
string
responseId
Response ID from the model provider
responseId?: string
Property Value
string