diff --git a/src/lib/components/chat/SettingsModal.svelte b/src/lib/components/chat/SettingsModal.svelte
index 79321cc8fb..9280f8bde6 100644
--- a/src/lib/components/chat/SettingsModal.svelte
+++ b/src/lib/components/chat/SettingsModal.svelte
@@ -259,8 +259,13 @@
'pastelargetextasfile',
'reset background',
'resetbackground',
+ 'disable auto scroll',
+ 'disableautoscroll',
'response auto copy',
+ 'response auto scroll',
+ 'response auto-scroll',
'responseautocopy',
+ 'responseautoscroll',
'rich text input for chat',
'richtextinputforchat',
'right to left',
diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json
index eb9b1c5f9d..16ad0352d6 100644
--- a/src/lib/i18n/locales/en-GB/translation.json
+++ b/src/lib/i18n/locales/en-GB/translation.json
@@ -1257,6 +1257,7 @@
"Format Markdown in previews and compact content surfaces.": "",
"Format Markdown syntax in assistant responses.": "",
"Format Markdown syntax in your own messages.": "",
+ "Follow assistant responses as they are generated.": "",
"Formatting may be inconsistent from source.": "",
"Forward": "",
"Forwards system user OAuth access token to authenticate": "",
@@ -2177,6 +2178,7 @@
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Response": "",
+ "Response Auto-Scroll": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response Splitting": "",
"Response Watermark": "",
diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json
index 4751ce3291..c14841a9a7 100644
--- a/src/lib/i18n/locales/en-US/translation.json
+++ b/src/lib/i18n/locales/en-US/translation.json
@@ -1257,6 +1257,7 @@
"Format Markdown in previews and compact content surfaces.": "",
"Format Markdown syntax in assistant responses.": "",
"Format Markdown syntax in your own messages.": "",
+ "Follow assistant responses as they are generated.": "",
"Formatting may be inconsistent from source.": "",
"Forward": "",
"Forwards system user OAuth access token to authenticate": "",
@@ -2177,6 +2178,7 @@
"Reset Vector Storage/Knowledge": "",
"Reset view": "",
"Response": "",
+ "Response Auto-Scroll": "",
"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
"Response Splitting": "",
"Response Watermark": "",
diff --git a/src/lib/stores/index.ts b/src/lib/stores/index.ts
index fc3dfac5be..0738337035 100644
--- a/src/lib/stores/index.ts
+++ b/src/lib/stores/index.ts
@@ -234,6 +234,7 @@ type Settings = {
iframeSandboxAllowForms?: boolean;
iframeSandboxAllowSameOrigin?: boolean;
scrollOnBranchChange?: boolean;
+ scrollOnResponseGeneration?: boolean;
showFilesOnTerminalSelect?: boolean;
directConnections?: null;
chatBubble?: boolean;