Commit bcc2bab6 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac

parent 0260c714
......@@ -255,8 +255,6 @@
const sendPrompt = async (prompt, parentId, modelId = null) => {
const _chatId = JSON.parse(JSON.stringify($chatId));
let userContext = null;
await Promise.all(
(modelId ? [modelId] : atSelectedModel !== '' ? [atSelectedModel.id] : selectedModels).map(
async (modelId) => {
......@@ -273,7 +271,7 @@
role: 'assistant',
content: '',
model: model.id,
userContext: userContext,
userContext: null,
timestamp: Math.floor(Date.now() / 1000) // Unix epoch
};
......@@ -291,6 +289,7 @@
await tick();
let userContext = null;
if ($settings?.memory ?? false) {
if (userContext === null) {
const res = await queryMemory(localStorage.token, prompt).catch((error) => {
......@@ -314,7 +313,6 @@
}
}
}
responseMessage.userContext = userContext;
if (model?.external) {
......
......@@ -261,8 +261,6 @@
const sendPrompt = async (prompt, parentId, modelId = null) => {
const _chatId = JSON.parse(JSON.stringify($chatId));
let userContext = null;
await Promise.all(
(modelId ? [modelId] : atSelectedModel !== '' ? [atSelectedModel.id] : selectedModels).map(
async (modelId) => {
......@@ -279,7 +277,7 @@
role: 'assistant',
content: '',
model: model.id,
userContext: userContext,
userContext: null,
timestamp: Math.floor(Date.now() / 1000) // Unix epoch
};
......@@ -297,6 +295,7 @@
await tick();
let userContext = null;
if ($settings?.memory ?? false) {
if (userContext === null) {
const res = await queryMemory(localStorage.token, prompt).catch((error) => {
......@@ -320,7 +319,6 @@
}
}
}
responseMessage.userContext = userContext;
if (model?.external) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment