diff --git a/index.html b/index.html index e671ecf7..4198c8e3 100644 --- a/index.html +++ b/index.html @@ -39,7 +39,7 @@

- Settings | V3.4.0

+ Settings | V3.4.1
diff --git a/js/app-view-model.js b/js/app-view-model.js index 5d574f47..8edbebee 100644 --- a/js/app-view-model.js +++ b/js/app-view-model.js @@ -516,7 +516,7 @@ export function AppViewModel() { content: visionFormattedMessages } ], - max_tokens: 1200 + max_tokens: 4096 }; fetch("https://api.openai.com/v1/chat/completions", { @@ -532,7 +532,6 @@ export function AppViewModel() { self.messages.push({ role: 'assistant', content: data.choices[0].message.content }); self.saveMessages(); - self.scrollToBottom(); self.isAnalyzingImage(false); }) .catch(error => console.error('Error:', error));