mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-19 12:40:09 +01:00
29eff8a27f
* Support XLSX files (#2403) * support xlsx files * lint * create seperate docs for each xlsx sheet * lint * use node-xlsx pkg for parsing xslx files * lint * update error handling --------- Co-authored-by: timothycarambat <rambat1010@gmail.com> * wip chat window * ux+ux improvements and update new colors * chat window dark mode * remove comment --------- Co-authored-by: timothycarambat <rambat1010@gmail.com>
65 lines
1.5 KiB
JavaScript
65 lines
1.5 KiB
JavaScript
const WATCH_DIRECTORY = require("path").resolve(__dirname, "../hotdir");
|
|
|
|
const ACCEPTED_MIMES = {
|
|
"text/plain": [".txt", ".md", ".org", ".adoc", ".rst"],
|
|
"text/html": [".html"],
|
|
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
|
".docx",
|
|
],
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation": [
|
|
".pptx",
|
|
],
|
|
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": [
|
|
".xlsx",
|
|
],
|
|
|
|
"application/vnd.oasis.opendocument.text": [".odt"],
|
|
"application/vnd.oasis.opendocument.presentation": [".odp"],
|
|
|
|
"application/pdf": [".pdf"],
|
|
"application/mbox": [".mbox"],
|
|
|
|
"audio/wav": [".wav"],
|
|
"audio/mpeg": [".mp3"],
|
|
|
|
"video/mp4": [".mp4"],
|
|
"video/mpeg": [".mpeg"],
|
|
"application/epub+zip": [".epub"],
|
|
};
|
|
|
|
const SUPPORTED_FILETYPE_CONVERTERS = {
|
|
".txt": "./convert/asTxt.js",
|
|
".md": "./convert/asTxt.js",
|
|
".org": "./convert/asTxt.js",
|
|
".adoc": "./convert/asTxt.js",
|
|
".rst": "./convert/asTxt.js",
|
|
|
|
".html": "./convert/asTxt.js",
|
|
".pdf": "./convert/asPDF/index.js",
|
|
|
|
".docx": "./convert/asDocx.js",
|
|
".pptx": "./convert/asOfficeMime.js",
|
|
|
|
".odt": "./convert/asOfficeMime.js",
|
|
".odp": "./convert/asOfficeMime.js",
|
|
|
|
".xlsx": "./convert/asXlsx.js",
|
|
|
|
".mbox": "./convert/asMbox.js",
|
|
|
|
".epub": "./convert/asEPub.js",
|
|
|
|
".mp3": "./convert/asAudio.js",
|
|
".wav": "./convert/asAudio.js",
|
|
".mp4": "./convert/asAudio.js",
|
|
".mpeg": "./convert/asAudio.js",
|
|
};
|
|
|
|
module.exports = {
|
|
SUPPORTED_FILETYPE_CONVERTERS,
|
|
WATCH_DIRECTORY,
|
|
ACCEPTED_MIMES,
|
|
};
|