feat: Added reasoning effort to the right prompt
CI / All (ubuntu-latest) (push) Failing after 25s
CI / All (macos-latest) (push) Has been cancelled
CI / All (windows-latest) (push) Has been cancelled

This commit is contained in:
2026-07-17 17:34:10 -06:00
parent 8629c1ca15
commit 44783c5573
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -1699,6 +1699,10 @@ impl RequestContext {
.unwrap_or_default()
.to_string(),
);
if let Some(effort) = role.reasoning_effort() {
output.insert("reasoning_effort", effort.to_string());
}
if let Some(temperature) = role.temperature()
&& temperature != 0.0
{