Merge pull request #3946 from open-webui/dev

fix
This commit is contained in:
Timothy Jaeryang Baek 2024-07-17 17:21:03 +02:00 committed by GitHub
commit 878d12da24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 27 deletions

View File

@ -16,6 +16,7 @@
const i18n = getContext('i18n'); const i18n = getContext('i18n');
export let show = false; export let show = false;
export let uploadDoc: Function;
let uploadDocInputElement: HTMLInputElement; let uploadDocInputElement: HTMLInputElement;
let inputFiles; let inputFiles;
let tags = []; let tags = [];
@ -26,32 +27,6 @@
content: null content: null
}; };
const uploadDoc = async (file) => {
const res = await uploadDocToVectorDB(localStorage.token, '', file).catch((error) => {
toast.error(error);
return null;
});
if (res) {
await createNewDoc(
localStorage.token,
res.collection_name,
res.filename,
transformFileName(res.filename),
res.filename,
tags.length > 0
? {
tags: tags
}
: null
).catch((error) => {
toast.error(error);
return null;
});
await documents.set(await getDocs(localStorage.token));
}
};
const submitHandler = async () => { const submitHandler = async () => {
if (inputFiles && inputFiles.length > 0) { if (inputFiles && inputFiles.length > 0) {
for (const file of inputFiles) { for (const file of inputFiles) {

View File

@ -205,7 +205,7 @@
<EditDocModal bind:show={showEditDocModal} {selectedDoc} /> <EditDocModal bind:show={showEditDocModal} {selectedDoc} />
{/key} {/key}
<AddDocModal bind:show={showAddDocModal} /> <AddDocModal bind:show={showAddDocModal} {uploadDoc} />
<div class="mb-3"> <div class="mb-3">
<div class="flex justify-between items-center"> <div class="flex justify-between items-center">