We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34f5565 commit 7908ff1Copy full SHA for 7908ff1
src/cli/debug/agentSessionCli.ts
@@ -183,8 +183,7 @@ async function main(): Promise<void> {
183
throw new Error("Message must be provided via --message or stdin");
184
}
185
186
- const model =
187
- values.model && values.model.trim().length > 0 ? values.model.trim() : defaultModel;
+ const model = values.model && values.model.trim().length > 0 ? values.model.trim() : defaultModel;
188
const timeoutMs = parseTimeout(values.timeout);
189
const thinkingLevel = parseThinkingLevel(values["thinking-level"]);
190
const initialMode = parseMode(values.mode);
0 commit comments