InvocationCostBreakdown
Cost breakdown for template invocation response
Properties
| Property | Type | Required | Description |
|---|---|---|---|
computeCost |
string | Yes | |
llmCost |
string | Yes | |
llmKeyUsed |
string | Yes | |
publisherFee |
string | Yes | |
total |
string | Yes |
View JSON Schema
{
"type": "object",
"description": "Cost breakdown for template invocation response",
"required": [
"publisherFee",
"llmCost",
"computeCost",
"total",
"llmKeyUsed"
],
"properties": {
"computeCost": {
"type": "string"
},
"llmCost": {
"type": "string"
},
"llmKeyUsed": {
"type": "string"
},
"publisherFee": {
"type": "string"
},
"total": {
"type": "string"
}
}
}