feat: fall back after repeated content denials

This commit is contained in:
Alex Schapiro
2026-08-10 13:19:23 +00:00
parent 94a2586aaa
commit e170c5506b
6 changed files with 224 additions and 3 deletions
+8
View File
@@ -35,6 +35,14 @@ Configure Strix using environment variables or a config file.
Maximum number of retries for LLM API calls on transient failures.
</ParamField>
<ParamField path="STRIX_LLM_FALLBACK" type="string">
Optional fallback model used after repeated content-guardrail denials within one agent's lifecycle. Unset disables this behavior.
</ParamField>
<ParamField path="STRIX_LLM_DENIED_RETRIES" default="3" type="integer">
Number of content-guardrail denials before the agent switches to `STRIX_LLM_FALLBACK` for the rest of its lifecycle.
</ParamField>
<ParamField path="STRIX_REASONING_EFFORT" default="high" type="string">
Control thinking effort for reasoning models. Valid values: `none`, `minimal`, `low`, `medium`, `high`, `xhigh`, `max`. Defaults to `medium` for quick scan mode.
</ParamField>