forked from open-webui/open-webui
feat: include files from previous prompts
This commit is contained in:
parent
142269374f
commit
aa82e381d1
1 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue