Skip to content

Commit da850bf

Browse files
authored
chore: makes thinking opt-in by default (#1810)
1 parent d4a9dc1 commit da850bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/chat-cli/src/cli/chat/tools/thinking.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pub struct Thinking {
3030
impl Thinking {
3131
/// Checks if the thinking feature is enabled in settings
3232
pub fn is_enabled(database: &Database) -> bool {
33-
database.settings.get_bool(Setting::EnabledThinking).unwrap_or(true)
33+
database.settings.get_bool(Setting::EnabledThinking).unwrap_or(false)
3434
}
3535

3636
/// Queues up a description of the think tool for the user

0 commit comments

Comments
 (0)