mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-23 13:08: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
frontend/src/components/Modals/MangeWorkspace/Settings
server
|
@ -150,13 +150,11 @@ export default function WorkspaceSettings({ workspace }) {
|
||||||
Chat History
|
Chat History
|
||||||
</label>
|
</label>
|
||||||
<p className="text-xs text-gray-600 dark:text-stone-400">
|
<p className="text-xs text-gray-600 dark:text-stone-400">
|
||||||
Chat history: The number of previous chats that
|
The number of previous chats that will be included in the
|
||||||
will be included in the response's short-term memory.
|
response's short-term memory.
|
||||||
<br />
|
<br />
|
||||||
Recommend 20. Anything more than 45 is likely to lead to
|
Recommend 20. Anything more than 45 is likely to lead to
|
||||||
continuous chat failures depending on message size.
|
continuous chat failures depending on message size.
|
||||||
<br />
|
|
||||||
Recommended: 20
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<input
|
<input
|
||||||
|
|
|
@ -113,7 +113,7 @@ const Workspace = {
|
||||||
const values = Object.values(data);
|
const values = Object.values(data);
|
||||||
if (validKeys.length === 0 || validKeys.length !== values.length)
|
if (validKeys.length === 0 || validKeys.length !== values.length)
|
||||||
return { workspace: { id }, message: "No valid fields to update!" };
|
return { workspace: { id }, message: "No valid fields to update!" };
|
||||||
|
|
||||||
const template = `UPDATE ${this.tablename} SET ${validKeys.map((key) => {
|
const template = `UPDATE ${this.tablename} SET ${validKeys.map((key) => {
|
||||||
return `${key}=?`;
|
return `${key}=?`;
|
||||||
})} WHERE id = ?`;
|
})} WHERE id = ?`;
|
||||||
|
@ -127,7 +127,7 @@ const Workspace = {
|
||||||
return { success: false, message: error.message };
|
return { success: false, message: error.message };
|
||||||
});
|
});
|
||||||
|
|
||||||
db.close();
|
db.close();
|
||||||
if (!success) {
|
if (!success) {
|
||||||
return { workspace: null, message };
|
return { workspace: null, message };
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,8 +105,11 @@ async function chatWithWorkspace(workspace, message, chatMode = "chat") {
|
||||||
};
|
};
|
||||||
} else {
|
} else {
|
||||||
var messageLimit = workspace?.openAiHistory;
|
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 chatHistory = convertToPromptHistory(rawHistory);
|
||||||
const {
|
const {
|
||||||
response,
|
response,
|
||||||
|
|
Loading…
Add table
Reference in a new issue