refactor(agents): Add "max" to all codebase reasoning enums accordingly

This commit is contained in:
4rcadia
2026-04-30 23:57:58 -04:00
parent 4c6fd2e5a8
commit f49afe7b91
5 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ export const AgentOverrideConfigSchema = z.object({
})
.optional(),
/** Reasoning effort level (OpenAI). Overrides category and default settings. */
reasoningEffort: z.enum(["none", "minimal", "low", "medium", "high", "xhigh"]).optional(),
reasoningEffort: z.enum(["none", "minimal", "low", "medium", "high", "xhigh", "max"]).optional(),
/** Text verbosity level. */
textVerbosity: z.enum(["low", "medium", "high"]).optional(),
/** Provider-specific options. Passed directly to OpenCode SDK. */