Documentation
¶
Overview ¶
Package verifier runs structural quality checks on a model response and decides whether to retry, accept, or defer. (SmallCode's quality monitor, minus the coding-agent rollback bits.)
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Verdict ¶
type Verdict struct {
OK bool
Retry bool // worth one corrective re-prompt
Reason string // populated when !OK
// Terminal marks a failure that a LARGER tier cannot fix either, so the
// pipeline should defer to Opus immediately instead of escalating. Truncation
// is the case: every local tier shares the same context window, so climbing
// to the slow 26B-A4B just burns compute before deferring anyway.
Terminal bool
}
Verdict is the outcome of a quality check.
Click to show internal directories.
Click to hide internal directories.