{% extends "base.html" %} {% block title %}Providers — PyAgent Studio{% endblock %} {% block content %} {% include "_bp_banner.html" %}
Blueprint

Providers

{{ providers|length }} provider binding{{ '' if providers|length == 1 else 's' }}{% if blueprint_name %} in {{ blueprint_name }}{% endif %}. Costs per 1K tokens via LiteLLM.

{% if providers %} {% for p in providers %} {% endfor %}
BindingProviderModelFallbackInput / 1KOutput / 1K
{{ p.name }} {{ p.provider }} {{ p.model }} {{ p.fallback }} {{ p.input_cost_1k }} {{ p.output_cost_1k }}
{% else %}

No providers defined in the blueprint.

{% endif %}
{% endblock %}