mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-31 01:46:25 +00:00
41 lines
996 B
JavaScript
41 lines
996 B
JavaScript
|
const WATCH_DIRECTORY = require("path").resolve(__dirname, "../hotdir");
|
||
|
|
||
|
const ACCEPTED_MIMES = {
|
||
|
"text/plain": [".txt", ".md"],
|
||
|
"text/html": [".html"],
|
||
|
|
||
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
||
|
".docx",
|
||
|
],
|
||
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation": [
|
||
|
".pptx",
|
||
|
],
|
||
|
|
||
|
"application/vnd.oasis.opendocument.text": [".odt"],
|
||
|
"application/vnd.oasis.opendocument.presentation": [".odp"],
|
||
|
|
||
|
"application/pdf": [".pdf"],
|
||
|
"application/mbox": [".mbox"],
|
||
|
};
|
||
|
|
||
|
const SUPPORTED_FILETYPE_CONVERTERS = {
|
||
|
".txt": "./convert/asTxt.js",
|
||
|
".md": "./convert/asTxt.js",
|
||
|
".html": "./convert/asTxt.js",
|
||
|
".pdf": "./convert/asPDF.js",
|
||
|
|
||
|
".docx": "./convert/asDocx.js",
|
||
|
".pptx": "./convert/asOfficeMime.js",
|
||
|
|
||
|
".odt": "./convert/asOfficeMime.js",
|
||
|
".odp": "./convert/asOfficeMime.js",
|
||
|
|
||
|
".mbox": "./convert/asMbox.js",
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
SUPPORTED_FILETYPE_CONVERTERS,
|
||
|
WATCH_DIRECTORY,
|
||
|
ACCEPTED_MIMES,
|
||
|
};
|