We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e1b381 commit 8f8e3b0Copy full SHA for 8f8e3b0
1 file changed
src/askui/reporting.py
@@ -1010,7 +1010,9 @@ def generate(self) -> None:
1010
</span>
1011
<span class="usage-breakdown-meta">
1012
Input {{ "{:,}".format(conversation_usage.input_tokens or 0) }},
1013
- Output {{ "{:,}".format(conversation_usage.output_tokens or 0) }}
+ Output {{ "{:,}".format(conversation_usage.output_tokens or 0) }},
1014
+ Cache Create {{ "{:,}".format(conversation_usage.cache_creation_input_tokens or 0) }},
1015
+ Cache Read {{ "{:,}".format(conversation_usage.cache_read_input_tokens or 0) }}
1016
{% if conversation_usage.total_cost is not none and conversation_usage.total_cost > 0 %}
1017
, Cost:
1018
${{ "%.6f"|format(conversation_usage.total_cost) }}
0 commit comments