{% extends "base.html" %} {% block title %}New Audit — SimpleAudit{% endblock %} {% block content %}

New Audit

{% if error %}
{{ error }}
{% endif %}
{% csrf_token %}

Scenario Set

+ New
{% if not sets %}

No sets yet? Create a scenario set →

{% endif %}

Models

+ New
{% if not endpoints %}

No models yet? Register a model endpoint →

{% endif %}
{% if clone %}{% endif %}

Hyperparameters

Conversation turns per scenario.

Used in auditor prompts.

Run each scenario N times to measure judge stability.

▸ Advanced — Generation Config Override (JSON)

Optional JSON object merged into the frozen generation parameters. All keys are stored in the reproducibility manifest.
Per-request generation params (SimpleAudit 0.1.13+): params (all roles), target_params, judge_params, auditor_params — any provider key (temperature, top_p, max_tokens, etc.).
Client constructor kwargs: target_kwargs, auditor_kwargs, judge_kwargs (e.g. {"timeout": 120}).
Other: max_retries, retry_backoff, system_prompt, probe_prompt, judge_prompt, max_turns, language.

{% endblock %}