Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/chat-cli/src/cli/chat/tools/thinking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ pub struct Thinking {
impl Thinking {
/// Checks if the thinking feature is enabled in settings
pub fn is_enabled(database: &Database) -> bool {
database.settings.get_bool(Setting::EnabledThinking).unwrap_or(true)
database.settings.get_bool(Setting::EnabledThinking).unwrap_or(false)
}

/// Queues up a description of the think tool for the user
Expand Down
Loading