{% extends "base.html" %} {% block title %}Pricing - Janus{% endblock %} {% block pricing_active %}bg-gray-700 text-white{% endblock %} {% block content %}

Pricing

Cost per million tokens. Override builtin pricing or add custom model rates.

{% include "pricing_sync_status.html" %}

Add / Update Override

{% if unpriced %}

Unpriced models seen recently

Requests in the last 30 days recorded $0 cost with nonzero tokens. Add an override to price them.

{% for u in unpriced %} {% endfor %}
Model Requests Input Tokens Output Tokens
{{ u.model }} {{ u.requests }} {{ "{:,}".format(u.input_tokens) }} {{ "{:,}".format(u.output_tokens) }}
{% endif %} {% include "pricing_partial.html" %} {% endblock %}