"include/vscode:/vscode.git/clone" did not exist on "00c1016e4979b2c121bf76ff20d4c2b7c29845a1"
Commit 2972774d authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

refac

parent 64b6a8c5
...@@ -327,6 +327,9 @@ ...@@ -327,6 +327,9 @@
chatTextAreaElement.style.height = ''; chatTextAreaElement.style.height = '';
} }
const _files = JSON.parse(JSON.stringify(files));
files = [];
prompt = ''; prompt = '';
// Create user message // Create user message
...@@ -338,7 +341,7 @@ ...@@ -338,7 +341,7 @@
role: 'user', role: 'user',
user: _user ?? undefined, user: _user ?? undefined,
content: userPrompt, content: userPrompt,
files: files.length > 0 ? files : undefined, files: _files.length > 0 ? _files : undefined,
timestamp: Math.floor(Date.now() / 1000), // Unix epoch timestamp: Math.floor(Date.now() / 1000), // Unix epoch
models: selectedModels.filter((m, mIdx) => selectedModels.indexOf(m) === mIdx) models: selectedModels.filter((m, mIdx) => selectedModels.indexOf(m) === mIdx)
}; };
...@@ -378,9 +381,6 @@ ...@@ -378,9 +381,6 @@
} }
await tick(); await tick();
} }
files = [];
// Send prompt // Send prompt
_responses = await sendPrompt(userPrompt, userMessageId); _responses = await sendPrompt(userPrompt, userMessageId);
} }
......
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