feat: include files from previous prompts

This commit is contained in:
Timothy J. Baek 2024-01-07 02:14:17 -08:00
parent 142269374f
commit aa82e381d1

View file

@ -185,10 +185,10 @@
const sendPrompt = async (prompt, parentId) => { const sendPrompt = async (prompt, parentId) => {
const _chatId = JSON.parse(JSON.stringify($chatId)); const _chatId = JSON.parse(JSON.stringify($chatId));
// TODO: update below to include all ancestral files const docs = messages
.filter((message) => message?.files ?? null)
console.log(history.messages[parentId]); .map((message) => message.files.filter((item) => item.type === 'doc'))
const docs = history.messages[parentId]?.files?.filter((item) => item.type === 'doc') ?? []; .flat(1);
console.log(docs); console.log(docs);
if (docs.length > 0) { if (docs.length > 0) {