Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
29dd973d
Commit
29dd973d
authored
Jan 22, 2024
by
Timothy J. Baek
Browse files
refac: frontend supported file extensions
parent
2e4373c6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
13 deletions
+23
-13
src/lib/components/chat/MessageInput.svelte
src/lib/components/chat/MessageInput.svelte
+11
-7
src/lib/constants.ts
src/lib/constants.ts
+3
-1
src/routes/(app)/documents/+page.svelte
src/routes/(app)/documents/+page.svelte
+9
-5
No files found.
src/lib/components/chat/MessageInput.svelte
View file @
29dd973d
...
...
@@ -8,7 +8,7 @@
import Suggestions from './MessageInput/Suggestions.svelte';
import { uploadDocToVectorDB } from '$lib/apis/rag';
import AddFilesPlaceholder from '../AddFilesPlaceholder.svelte';
import { SUPPORTED_FILE_TYPE } from '$lib/constants';
import { SUPPORTED_FILE_TYPE
, SUPPORTED_FILE_EXTENSIONS
} from '$lib/constants';
import Documents from './MessageInput/Documents.svelte';
import Models from './MessageInput/Models.svelte';
...
...
@@ -169,11 +169,13 @@
reader.readAsDataURL(file);
} else if (
SUPPORTED_FILE_TYPE.includes(file['type']) ||
['md']
.includes(file.name.split('.').at(-1))
SUPPORTED_FILE_EXTENSIONS
.includes(file.name.split('.').at(-1))
) {
uploadDoc(file);
} else {
toast.error(`Unknown File Type '${file['type']}', but accepting and treating as plain text`);
toast.error(
`Unknown File Type '${file['type']}', but accepting and treating as plain text`
);
uploadDoc(file);
}
} else {
...
...
@@ -304,12 +306,14 @@
reader.readAsDataURL(file);
} else if (
SUPPORTED_FILE_TYPE.includes(file['type']) ||
['md']
.includes(file.name.split('.').at(-1))
SUPPORTED_FILE_EXTENSIONS
.includes(file.name.split('.').at(-1))
) {
uploadDoc(file);
filesInputElement.value = '';
} else {
toast.error(`Unknown File Type '${file['type']}', but accepting and treating as plain text`);
toast.error(
`Unknown File Type '${file['type']}', but accepting and treating as plain text`
);
uploadDoc(file);
filesInputElement.value = '';
}
...
...
@@ -466,8 +470,8 @@
placeholder={chatInputPlaceholder !== ''
? chatInputPlaceholder
: speechRecognitionListening
? 'Listening...'
: 'Send a message'}
? 'Listening...'
: 'Send a message'}
bind:value={prompt}
on:keypress={(e) => {
if (e.keyCode == 13 && !e.shiftKey) {
...
...
src/lib/constants.ts
View file @
29dd973d
...
...
@@ -21,9 +21,11 @@ export const SUPPORTED_FILE_TYPE = [
'
application/vnd.openxmlformats-officedocument.wordprocessingml.document
'
,
'
application/octet-stream
'
,
'
application/x-javascript
'
,
'
text/markdown
'
,
'
text/markdown
'
];
export
const
SUPPORTED_FILE_EXTENSIONS
=
[
'
md
'
,
'
rst
'
];
// Source: https://kit.svelte.dev/docs/modules#$env-static-public
// This feature, akin to $env/static/private, exclusively incorporates environment variables
// that are prefixed with config.kit.env.publicPrefix (usually set to PUBLIC_).
...
...
src/routes/(app)/documents/+page.svelte
View file @
29dd973d
...
...
@@ -7,7 +7,7 @@
import { documents } from '$lib/stores';
import { createNewDoc, deleteDocByName, getDocs } from '$lib/apis/documents';
import { SUPPORTED_FILE_TYPE } from '$lib/constants';
import { SUPPORTED_FILE_TYPE
, SUPPORTED_FILE_EXTENSIONS
} from '$lib/constants';
import { uploadDocToVectorDB } from '$lib/apis/rag';
import { transformFileName } from '$lib/utils';
...
...
@@ -69,11 +69,13 @@
const file = inputFiles[0];
if (
SUPPORTED_FILE_TYPE.includes(file['type']) ||
['md']
.includes(file.name.split('.').at(-1))
SUPPORTED_FILE_EXTENSIONS
.includes(file.name.split('.').at(-1))
) {
uploadDoc(file);
} else {
toast.error(`Unknown File Type '${file['type']}', but accepting and treating as plain text`);
toast.error(
`Unknown File Type '${file['type']}', but accepting and treating as plain text`
);
uploadDoc(file);
}
} else {
...
...
@@ -150,11 +152,13 @@
const file = inputFiles[0];
if (
SUPPORTED_FILE_TYPE.includes(file['type']) ||
['md']
.includes(file.name.split('.').at(-1))
SUPPORTED_FILE_EXTENSIONS
.includes(file.name.split('.').at(-1))
) {
uploadDoc(file);
} else {
toast.error(`Unknown File Type '${file['type']}', but accepting and treating as plain text`);
toast.error(
`Unknown File Type '${file['type']}', but accepting and treating as plain text`
);
uploadDoc(file);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment