mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-24 05:28:11 +00:00
UI updates and linting
This commit is contained in:
parent
98d7266291
commit
032c9d27b6
3 changed files with 10 additions and 9 deletions
|
@ -150,13 +150,11 @@ export default function WorkspaceSettings({ workspace }) {
|
|||
Chat History
|
||||
</label>
|
||||
<p className="text-xs text-gray-600 dark:text-stone-400">
|
||||
Chat history: The number of previous chats that
|
||||
will be included in the response's short-term memory.
|
||||
The number of previous chats that will be included in the
|
||||
response's short-term memory.
|
||||
<br />
|
||||
Recommend 20. Anything more than 45 is likely to lead to
|
||||
continuous chat failures depending on message size.
|
||||
<br />
|
||||
Recommended: 20
|
||||
</p>
|
||||
</div>
|
||||
<input
|
||||
|
|
|
@ -106,7 +106,10 @@ async function chatWithWorkspace(workspace, message, chatMode = "chat") {
|
|||
} else {
|
||||
var messageLimit = workspace?.openAiHistory;
|
||||
|
||||
const rawHistory = await WorkspaceChats.forWorkspace(workspace.id, messageLimit);
|
||||
const rawHistory = await WorkspaceChats.forWorkspace(
|
||||
workspace.id,
|
||||
messageLimit
|
||||
);
|
||||
const chatHistory = convertToPromptHistory(rawHistory);
|
||||
const {
|
||||
response,
|
||||
|
|
Loading…
Add table
Reference in a new issue