{% extends "base.html" %} {% block title %}Config — dvad{% endblock %} {% block content %}
Binary: {{ dvad_binary }}
Config: {{ config_file }}
Data: {{ data_dir }}
Reviews: {{ reviews_dir }}
Logs: {{ logs_dir }}
Templates: {{ templates_dir }}
{# ── Structured Tab ─────────────────────────────────────────────────── #}

Models

{% if config and sorted_models %} {% for name, m in sorted_models %}
{{ name }}{% if m.enabled is defined and not m.enabled %} disabled{% endif %}
provider: {{ m.provider }}
model_id: {{ m.model_id }}
api_key_env: {{ m.api_key_env }}
{% if m.api_base %}
api_base: {{ m.api_base }}
{% endif %}
context: {{ "{:,}".format(m.context_window) if m.context_window else 'unset' }} timeout: {{ m.timeout }}s max out: {{ m.max_out_configured if m.max_out_configured else 'unset' }} /{{ "{:,}".format(m.max_out_stated) if m.max_out_stated else '?' }}
cost in: {{ m.cost_per_1k_input if m.cost_per_1k_input is not none else 'unset' }} cost out: {{ m.cost_per_1k_output if m.cost_per_1k_output is not none else 'unset' }} per 1K tokens
{% if m.use_completion_tokens %}
use_completion_tokens: true
{% endif %}
{% endfor %} {% else %}

No models configured.

{% endif %}

API Keys

Keys are saved to {{ env_file_path }} {% if env_file_exists %} exists {% else %} not created {% endif %}

Loading...

Validation

{% if issues %} {% for level, msg in issues %}
{{ level|upper }}: {{ msg }}
{% endfor %} {% else %}
Configuration is valid.
{% endif %}

Role Assignments

{% set role_keys = ['author', 'reviewer1', 'reviewer2', 'dedup', 'normalization', 'revision', 'integration'] %} {% for r in role_assignments %}
{{ r.label }}: {% if r.model %} {{ r.model }} {% else %} - {% endif %}
{% endfor %}
What do these roles do?
Author: Generates initial responses to reviewer findings and produces revised artifacts
Reviewer (x2): Independently analyzes input for issues, risks, and improvements
Dedup: Consolidates overlapping findings from multiple reviewers into groups
Normalization: Standardizes severity levels and categories across grouped findings
Revision: Creates the final revised artifact incorporating accepted feedback
Integration: Reviews cross-system integration concerns and component interactions

Development

live e2e tests: {{ 'enabled' if settings.get('live_testing') else 'disabled' }} run without -m live flag
{# ── Save Roles Toast ───────────────────────────────────────────────── #}
{# ── Raw YAML Tab ───────────────────────────────────────────────────── #} {% endblock %} {% block scripts %} {% endblock %}