feat(ai): add max thinking level
This commit is contained in:
@@ -52,7 +52,7 @@ interface Preset {
|
||||
/** Model ID (e.g., "claude-sonnet-4-5") */
|
||||
model?: string;
|
||||
/** Thinking level */
|
||||
thinkingLevel?: "off" | "minimal" | "low" | "medium" | "high" | "xhigh";
|
||||
thinkingLevel?: "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "max";
|
||||
/** Tools to enable (replaces default set) */
|
||||
tools?: string[];
|
||||
/** Instructions to append to system prompt */
|
||||
@@ -100,7 +100,7 @@ function loadPresets(cwd: string): PresetsConfig {
|
||||
|
||||
interface OriginalState {
|
||||
model: Model<Api> | undefined;
|
||||
thinkingLevel: "off" | "minimal" | "low" | "medium" | "high" | "xhigh";
|
||||
thinkingLevel: "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "max";
|
||||
tools: string[];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user