Skip to content

Commit 1bd446f

Browse files
committed
Update embedFileContentInChatContextIfNoSelection to false by default
1 parent 4cffaa4 commit 1bd446f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Core/Sources/Preferences/Keys.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,11 +194,11 @@ public extension UserDefaultPreferenceKeys {
194194
}
195195

196196
var embedFileContentInChatContextIfNoSelection: PreferenceKey<Bool> {
197-
.init(defaultValue: true, key: "EmbedFileContentInChatContextIfNoSelection")
197+
.init(defaultValue: false, key: "EmbedFileContentInChatContextIfNoSelection")
198198
}
199199

200200
var maxEmbeddableFileInChatContextLineCount: PreferenceKey<Int> {
201-
.init(defaultValue: 200, key: "MaxEmbeddableFileInChatContextLineCount")
201+
.init(defaultValue: 100, key: "MaxEmbeddableFileInChatContextLineCount")
202202
}
203203
}
204204

0 commit comments

Comments
 (0)