{% extends "base.html" %} {% block title %}thirdeye — usage {{ sid }}{% endblock %} {% block content %}
events
{{ aggregate.event_count }}
bytes
{{ aggregate.bytes_compressed }}
{% if rows %} {% if show_copilot_labels %} {% endif %} {% for row in rows %} {% if show_copilot_labels %} {% endif %} {% endfor %}
seq model input output cache read cache creation reasoningcopilot native billing (nano-AIU) duration_ms TTFT (ms)total ts
{{ row.seq }} {{ row.response_model }} {{ row.input_tokens }} {{ row.output_tokens }} {{ row.cache_read_input_tokens if row.cache_read_input_tokens is not none else "-" }} {{ row.cache_creation_input_tokens if row.cache_creation_input_tokens is not none else "-" }} {{ row.reasoning_output_tokens if row.reasoning_output_tokens is not none else "-" }}{{ row.copilot_billing_nano_aiu if row.copilot_billing_nano_aiu is not none else "-" }} {{ row.duration_ms if row.duration_ms is not none else "-" }} {{ row.output_ttft_ms if row.output_ttft_ms is not none else "-" }}{{ row.total_tokens }} {{ row.ts }}
{% else %}

no usage recorded yet.

{% endif %}
{% endblock %}